Skip to content

Commit

Permalink
Formatting...
Browse files Browse the repository at this point in the history
  • Loading branch information
ThexXTURBOXx committed May 29, 2017
1 parent 4d9f656 commit 01ea168
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
15 changes: 10 additions & 5 deletions java/org/silvercatcher/reforged/ReforgedRegistry.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,16 @@ public static void createItems() {
.setCreativeTab(ReforgedMod.tabReforged));
registrationList.add(ReforgedAdditions.MUSKET = new ItemMusket());
if (GlobalValues.KNIFE) {
registrationList.add(ReforgedAdditions.WOODEN_BAYONET_MUSKET = new ItemMusketWithBayonet(ToolMaterial.WOOD));
registrationList.add(ReforgedAdditions.STONE_BAYONET_MUSKET = new ItemMusketWithBayonet(ToolMaterial.STONE));
registrationList.add(ReforgedAdditions.GOLDEN_BAYONET_MUSKET = new ItemMusketWithBayonet(ToolMaterial.GOLD));
registrationList.add(ReforgedAdditions.IRON_BAYONET_MUSKET = new ItemMusketWithBayonet(ToolMaterial.IRON));
registrationList.add(ReforgedAdditions.DIAMOND_BAYONET_MUSKET = new ItemMusketWithBayonet(ToolMaterial.DIAMOND));
registrationList
.add(ReforgedAdditions.WOODEN_BAYONET_MUSKET = new ItemMusketWithBayonet(ToolMaterial.WOOD));
registrationList
.add(ReforgedAdditions.STONE_BAYONET_MUSKET = new ItemMusketWithBayonet(ToolMaterial.STONE));
registrationList
.add(ReforgedAdditions.GOLDEN_BAYONET_MUSKET = new ItemMusketWithBayonet(ToolMaterial.GOLD));
registrationList
.add(ReforgedAdditions.IRON_BAYONET_MUSKET = new ItemMusketWithBayonet(ToolMaterial.IRON));
registrationList.add(
ReforgedAdditions.DIAMOND_BAYONET_MUSKET = new ItemMusketWithBayonet(ToolMaterial.DIAMOND));
}
registrationList.add(ReforgedAdditions.MUSKET_BULLET = new ItemBulletMusket());
registrationList.add(ReforgedAdditions.BLUNDERBUSS = new ItemBlunderbuss());
Expand Down
3 changes: 2 additions & 1 deletion java/org/silvercatcher/reforged/items/others/ItemDart.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ public void registerRecipes() {
break;

case "poison":
GameRegistry.addShapelessRecipe(new ItemStack(this), ReforgedAdditions.DART_NORMAL, new ItemStack(Blocks.CACTUS));
GameRegistry.addShapelessRecipe(new ItemStack(this), ReforgedAdditions.DART_NORMAL,
new ItemStack(Blocks.CACTUS));
break;

case "poison_strong":
Expand Down

0 comments on commit 01ea168

Please sign in to comment.