Skip to content
This repository has been archived by the owner on Dec 28, 2020. It is now read-only.

Commit

Permalink
Fix copy-paste error w/ TileTicks
Browse files Browse the repository at this point in the history
Relates to #1
  • Loading branch information
LB-- committed Feb 12, 2014
1 parent c9eac37 commit 9837959
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/LB_Stuff/NBT/Minecraft/Chunk.java
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ public Tag.Compound ToNBT(String name)
Tag.List sectionlist = new Tag.List("Sections", Tag.Type.COMPOUND),
entitylist = new Tag.List("Entities", Tag.Type.COMPOUND),
tileentitylist = new Tag.List("TileEntities", Tag.Type.COMPOUND),
tileticklist = new Tag.List("TileEntities", Tag.Type.COMPOUND);
tileticklist = new Tag.List("TileTicks", Tag.Type.COMPOUND);
try
{
for(Map.Entry<Byte, Section> s : sections.entrySet())
Expand Down

0 comments on commit 9837959

Please sign in to comment.