A whole lot of formatting cleanup
Also changes NBTHolder to a standard Constants class with subclasses for each category
This commit is contained in:
parent
f9802900db
commit
34dee6447b
74 changed files with 861 additions and 662 deletions
|
@ -1,6 +1,7 @@
|
|||
package WayofTime.bloodmagic.block;
|
||||
|
||||
import WayofTime.bloodmagic.BloodMagic;
|
||||
import WayofTime.bloodmagic.api.Constants;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.material.Material;
|
||||
import net.minecraft.block.state.IBlockState;
|
||||
|
@ -14,7 +15,7 @@ public class BlockSoulForge extends Block {
|
|||
public BlockSoulForge() {
|
||||
super(Material.iron);
|
||||
|
||||
setUnlocalizedName(BloodMagic.MODID + ".soulforge.");
|
||||
setUnlocalizedName(Constants.Mod.MODID + ".soulforge.");
|
||||
setHardness(2.0F);
|
||||
setResistance(5.0F);
|
||||
setStepSound(soundTypeMetal);
|
||||
|
@ -28,7 +29,6 @@ public class BlockSoulForge extends Block {
|
|||
return false;
|
||||
|
||||
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue