Fix JukeBoxes not storing the inserted record. All TE's in minecraft are in net.minecraft.tileentity EXCEPT JukeBoxes. Closes #1633 Closes #1714
This commit is contained in:
parent
938b752036
commit
f16a7ff890
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@
|
|||
+ {
|
||||
+ }
|
||||
+
|
||||
+ private boolean isVanilla = getClass().getName().startsWith("net.minecraft.tileentity");
|
||||
+ private boolean isVanilla = getClass().getName().startsWith("net.minecraft.");
|
||||
+ /**
|
||||
+ * Called from Chunk.setBlockIDWithMetadata, determines if this tile entity should be re-created when the ID, or Metadata changes.
|
||||
+ * Use with caution as this will leave straggler TileEntities, or create conflicts with other TileEntities if not used properly.
|
||||
|
|
Loading…
Reference in a new issue