Skip to content

Commit

Permalink
move drawbridge state interfaces to TMech -- will be given IMC
Browse files Browse the repository at this point in the history
  • Loading branch information
progwml6 committed Jan 28, 2014
1 parent 1c71c1c commit 7cded16
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/main/java/tconstruct/library/TConstructRegistry.java
Expand Up @@ -512,11 +512,13 @@ public static void registerActiveToolMod (ActiveToolMod mod)
* 5: Has rotational TileEntity data
* 6: Custom placement logic
*/
public static HashMap<ItemStack, Integer> drawbridgeState = new HashMap<ItemStack, Integer>();
/** Blocks that are interchangable with each other. Ex: Still and flowing water */
public static HashMap<Block, Block> interchangableBlockMapping = new HashMap<Block, Block> ();
/** Blocks that place items, and vice versa */
public static HashBiMap<Block, Item> blockToItemMapping;

//moved to TMech
//public static HashMap<ItemStack, Integer> drawbridgeState = new HashMap<ItemStack, Integer>();
/* Blocks that are interchangable with each other. Ex: Still and flowing water */
// static HashMap<Block, Block> interchangableBlockMapping = new HashMap<Block, Block> ();
/*Blocks that place items, and vice versa */
// public static HashBiMap<Block, Item> blockToItemMapping;

static void initializeDrawbridgeState ()
{
Expand Down

0 comments on commit 7cded16

Please sign in to comment.