Initialized the Nether Fortress chest loot

Forced the nether fortress chest loot to initialize in ChestGenHooks
like the other types.

Changed tabs to spaces. Silly Eclipse.
This commit is contained in:
Tmtravlr 2015-05-10 01:11:27 -07:00
parent 7ab952d410
commit b2de64bc70
1 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@ import net.minecraft.world.gen.structure.StructureStrongholdPieces.ChestCorridor
import net.minecraft.world.gen.structure.StructureStrongholdPieces.Library;
import net.minecraft.world.gen.structure.StructureStrongholdPieces.RoomCrossing;
import net.minecraft.world.gen.structure.StructureVillagePieces.House2;
import net.minecraft.world.gen.structure.StructureNetherBridgePieces.Corridor;
import net.minecraftforge.oredict.OreDictionary;
public class ChestGenHooks
@ -58,6 +59,7 @@ public class ChestGenHooks
new StructureStrongholdPieces.Library();
new StructureStrongholdPieces.RoomCrossing();
new StructureVillagePieces.House2();
new StructureNetherBridgePieces.Corridor();
WorldServer.fillChestHook();
}