A few tiny fixes
This commit is contained in:
parent
5af38f38d9
commit
974f49593c
3 changed files with 16 additions and 3 deletions
|
@ -259,7 +259,7 @@ public class Mekanism
|
|||
public static Item Salt;
|
||||
public static Item BrineBucket;
|
||||
public static Item FreeRunners;
|
||||
public static Item ArmoredJetpack;
|
||||
public static ItemJetpack ArmoredJetpack;
|
||||
|
||||
//Blocks
|
||||
public static Block BasicBlock;
|
||||
|
@ -570,7 +570,7 @@ public class Mekanism
|
|||
CraftingManager.getInstance().getRecipeList().add(new MekanismRecipe(new ItemStack(FreeRunners), new Object[] {
|
||||
"C C", "A A", "T T", Character.valueOf('C'), "circuitBasic", Character.valueOf('A'), EnrichedAlloy, Character.valueOf('T'), EnergyTablet.getUnchargedItem()
|
||||
}));
|
||||
CraftingManager.getInstance().getRecipeList().add(new MekanismRecipe(new ItemStack(ArmoredJetpack), new Object[] {
|
||||
CraftingManager.getInstance().getRecipeList().add(new MekanismRecipe(ArmoredJetpack.getEmptyItem(), new Object[] {
|
||||
"D D", "BSB", " J ", Character.valueOf('D'), "dustDiamond", Character.valueOf('B'), "ingotBronze", Character.valueOf('S'), "blockSteel", Character.valueOf('J'), Jetpack.getEmptyItem()
|
||||
}));
|
||||
|
||||
|
|
|
@ -29,4 +29,10 @@ public class TileEntityCardboardBox extends TileEntity
|
|||
nbtTags.setCompoundTag("storedData", storedData.write(new NBTTagCompound()));
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canUpdate()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,4 +3,11 @@ package mekanism.common.tile;
|
|||
import net.minecraft.tileentity.TileEntity;
|
||||
|
||||
//For a TESR
|
||||
public class TileEntityObsidianTNT extends TileEntity {}
|
||||
public class TileEntityObsidianTNT extends TileEntity
|
||||
{
|
||||
@Override
|
||||
public boolean canUpdate()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue