From b1335f9e9aeb904e66a4e591e49fa194b1d99f24 Mon Sep 17 00:00:00 2001 From: Nicholas Ignoffo Date: Tue, 18 Oct 2016 16:59:09 -0700 Subject: [PATCH] Fix inversion pillar inventory rendering --- .../java/WayofTime/bloodmagic/block/BlockInversionPillar.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockInversionPillar.java b/src/main/java/WayofTime/bloodmagic/block/BlockInversionPillar.java index 5cd1c7b8..0e430ba3 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockInversionPillar.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockInversionPillar.java @@ -93,7 +93,7 @@ public class BlockInversionPillar extends BlockEnumContainer im { List> ret = new ArrayList>(); for (int i = 0; i < this.getTypes().length; i++) - ret.add(new ImmutablePair(i, "type=" + this.getTypes()[i])); + ret.add(new ImmutablePair(i, "static=false,type=" + this.getTypes()[i])); return ret; }