diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-15 14:12:33 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-15 14:12:33 +1000 |
commit | 2def9acccdf30a88947943673fcd695f1e59cb77 (patch) | |
tree | 6846f3400fe70416504575281c7b859fc4f1297c /src/Java/gtPlusPlus/core/block/base | |
parent | c430178cf2cc3590f8dd33a4e620369208e5412a (diff) | |
download | GT5-Unofficial-2def9acccdf30a88947943673fcd695f1e59cb77.tar.gz GT5-Unofficial-2def9acccdf30a88947943673fcd695f1e59cb77.tar.bz2 GT5-Unofficial-2def9acccdf30a88947943673fcd695f1e59cb77.zip |
$ Fixed the Skookum Choocher.
$ Now it Renders properly and functions as a GT-esque type tool.
- Removed static calls to excluded build classes.
% Started changing things to final in all cases. (Apparently better Java practice)
Diffstat (limited to 'src/Java/gtPlusPlus/core/block/base')
-rw-r--r-- | src/Java/gtPlusPlus/core/block/base/BasicBlock.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/block/base/BasicBlock.java b/src/Java/gtPlusPlus/core/block/base/BasicBlock.java index cd879167ba..c95f37d9c5 100644 --- a/src/Java/gtPlusPlus/core/block/base/BasicBlock.java +++ b/src/Java/gtPlusPlus/core/block/base/BasicBlock.java @@ -8,7 +8,7 @@ import net.minecraft.block.material.Material; public class BasicBlock extends Block { - public BasicBlock(String unlocalizedName, Material material) { + public BasicBlock(final String unlocalizedName, final Material material) { super(material); this.setBlockName(Utils.sanitizeString(unlocalizedName)); this.setBlockTextureName(CORE.MODID + ":" + unlocalizedName); @@ -28,7 +28,7 @@ public class BasicBlock extends Block { private String TEXTURE_NAME; private String HARVEST_TOOL; private SoundType soundOfBlock; - private BlockTypes (String textureName, String harvestTool, SoundType blockSound) + private BlockTypes (final String textureName, final String harvestTool, final SoundType blockSound) { this.TEXTURE_NAME = textureName; this.HARVEST_TOOL = harvestTool; |