diff --git a/src/main/java/net/minecraft/world/chunk/Chunk.java b/src/main/java/net/minecraft/world/chunk/Chunk.java index 2e36f6b..1d2b538 100644 --- a/src/main/java/net/minecraft/world/chunk/Chunk.java +++ b/src/main/java/net/minecraft/world/chunk/Chunk.java @@ -3,10 +3,10 @@ import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import gnu.trove.iterator.TByteIterator; -import gnu.trove.list.TByteList; -import gnu.trove.list.array.TByteArrayList; import gnu.trove.map.TShortObjectMap; import gnu.trove.map.hash.TShortObjectHashMap; +import gnu.trove.set.TByteSet; +import gnu.trove.set.hash.TByteHashSet; import java.util.ArrayList; import java.util.Arrays; @@ -1111,7 +1111,7 @@ { if (this.isGapLightingUpdated && !this.worldObj.provider.hasNoSky && !p_150804_1_) { - this.recheckGaps(this.worldObj.isRemote); + this.recheckGaps(true);//this.worldObj.isRemote); } this.field_150815_m = true; @@ -1549,7 +1549,7 @@ /* ======================================== ULTRAMINE START =====================================*/ private final TShortObjectMap fastTileEntityMap = new TShortObjectHashMap(); - private final TByteList updateLightCoords = new TByteArrayList(); + private final TByteSet updateLightCoords = new TByteHashSet(); private Set pendingUpdatesSet; private TreeSet pendingUpdatesQueue;