Derped and left unnecessary sysouts, added the named version of registerBlock

This commit is contained in:
pahimar 2012-12-19 13:49:39 -05:00
parent 95bd72e0d8
commit a1e45baf45
2 changed files with 4 additions and 7 deletions

View file

@ -3,6 +3,7 @@ package com.pahimar.ee3.block;
import net.minecraft.block.Block;
import com.pahimar.ee3.lib.BlockIds;
import com.pahimar.ee3.lib.Strings;
import cpw.mods.fml.common.registry.GameRegistry;
@ -28,9 +29,9 @@ public class ModBlocks {
redWaterStill = new BlockRedWaterStill(BlockIds.RED_WATER_STILL);
redWaterFlowing = new BlockRedWaterFlowing(BlockIds.RED_WATER_STILL - 1);
GameRegistry.registerBlock(calcinator);
GameRegistry.registerBlock(redWaterStill);
GameRegistry.registerBlock(redWaterFlowing);
GameRegistry.registerBlock(calcinator, Strings.CALCINATOR_NAME);
GameRegistry.registerBlock(redWaterStill, Strings.RED_WATER_STILL_NAME);
GameRegistry.registerBlock(redWaterFlowing, Strings.RED_WATER_FLOWING_NAME);
initBlockRecipes();

View file

@ -54,23 +54,19 @@ public class WorldTransmutationHandler {
break;
}
case NORTH: {
System.out.println("NORTH");
zShift = 1D;
zSign = -1;
break;
}
case SOUTH: {
System.out.println("SOUTH");
zShift = 1D;
break;
}
case EAST: {
System.out.println("EAST");
xShift = 1D;
break;
}
case WEST: {
System.out.println("WEST");
xShift = 1D;
xSign = -1;
break;