aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Java/gtPlusPlus/core/block/general/MiningExplosives.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/block/general/MiningExplosives.java b/src/Java/gtPlusPlus/core/block/general/MiningExplosives.java
index 78014e7956..c02a16f88d 100644
--- a/src/Java/gtPlusPlus/core/block/general/MiningExplosives.java
+++ b/src/Java/gtPlusPlus/core/block/general/MiningExplosives.java
@@ -2,6 +2,8 @@ package gtPlusPlus.core.block.general;
import java.util.Random;
+import cpw.mods.fml.common.registry.GameRegistry;
+import cpw.mods.fml.common.registry.LanguageRegistry;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import gtPlusPlus.core.creative.AddToCreativeTab;
@@ -27,6 +29,10 @@ public class MiningExplosives extends BlockTNT {
public MiningExplosives(){
this.setCreativeTab(AddToCreativeTab.tabMachines);
+ this.setBlockName("blockMiningExplosives");
+ this.setCreativeTab(AddToCreativeTab.tabMachines);
+ GameRegistry.registerBlock(this, "blockMiningExplosives");
+ LanguageRegistry.addName(this, "Earth Blasting Explosives");
}
/**