diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-04-08 16:41:11 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-04-08 16:41:11 +1000 |
commit | 08e93930faa225c4bcd91115160e91671aaa4884 (patch) | |
tree | 018ec0ae9f3a51ea70655c3c045b2f0913579401 /src/Java/gtPlusPlus/core/block | |
parent | b6368490a3d910bcff1837b15f44bd78411d37bd (diff) | |
download | GT5-Unofficial-08e93930faa225c4bcd91115160e91671aaa4884.tar.gz GT5-Unofficial-08e93930faa225c4bcd91115160e91671aaa4884.tar.bz2 GT5-Unofficial-08e93930faa225c4bcd91115160e91671aaa4884.zip |
$ Finished work on HazmatUtils.java.
< Reverted the changes to GeneralTooltipEventHandler.java.
Diffstat (limited to 'src/Java/gtPlusPlus/core/block')
-rw-r--r-- | src/Java/gtPlusPlus/core/block/general/redstone/BlockGenericRedstoneTest.java | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/Java/gtPlusPlus/core/block/general/redstone/BlockGenericRedstoneTest.java b/src/Java/gtPlusPlus/core/block/general/redstone/BlockGenericRedstoneTest.java index ad59a83d0c..0f1f983cd0 100644 --- a/src/Java/gtPlusPlus/core/block/general/redstone/BlockGenericRedstoneTest.java +++ b/src/Java/gtPlusPlus/core/block/general/redstone/BlockGenericRedstoneTest.java @@ -45,7 +45,6 @@ public class BlockGenericRedstoneTest extends BlockGenericRedstone { @Override public boolean onScrewdriverLMB() { - // TODO Auto-generated method stub return super.onScrewdriverLMB(); } @@ -68,7 +67,6 @@ public class BlockGenericRedstoneTest extends BlockGenericRedstone { @Override public boolean onMalletLMB() { - // TODO Auto-generated method stub return super.onMalletLMB(); } @@ -86,7 +84,6 @@ public class BlockGenericRedstoneTest extends BlockGenericRedstone { @Override public boolean onWrenchLMB() { - // TODO Auto-generated method stub return super.onWrenchLMB(); } @@ -105,23 +102,21 @@ public class BlockGenericRedstoneTest extends BlockGenericRedstone { @Override protected String getTileEntityNameForRegistration() { - // TODO Auto-generated method stub return "TileEntityRedstoneTest"; } @Override public int isProvidingWeakPower(IBlockAccess world, int x, int y, int z, int side) { - // TODO Auto-generated method stub return super.isProvidingWeakPower(world, x, y, z, side); } @Override public int isProvidingStrongPower(IBlockAccess world, int x, int y, int z, int side) { - // TODO Auto-generated method stub return super.isProvidingStrongPower(world, x, y, z, side); } } + @SuppressWarnings("unchecked") @Override public void getSubBlocks(Item p_149666_1_, CreativeTabs p_149666_2_, List aList) { aList.add(ItemUtils.getSimpleStack(this)); @@ -135,13 +130,11 @@ public class BlockGenericRedstoneTest extends BlockGenericRedstone { @Override public Item getItemDropped(int p_149650_1_, Random p_149650_2_, int p_149650_3_) { - // TODO Auto-generated method stub return ItemUtils.getSimpleStack(this).getItem(); } @Override public Item getItem(World p_149694_1_, int p_149694_2_, int p_149694_3_, int p_149694_4_) { - // TODO Auto-generated method stub return ItemUtils.getSimpleStack(this).getItem(); } |