|
1 | 1 | package darkbum.saltymod.init; |
2 | 2 |
|
3 | | -import darkbum.saltymod.common.config.*; |
4 | 3 | import darkbum.saltymod.potion.ModPotion; |
5 | 4 | import net.minecraft.creativetab.CreativeTabs; |
6 | 5 | import net.minecraft.item.*; |
|
10 | 9 | import darkbum.saltymod.potion.ProbablePotionEffect; |
11 | 10 |
|
12 | 11 | import static darkbum.saltymod.common.config.ModConfigurationBlocks.*; |
| 12 | +import static darkbum.saltymod.common.config.ModConfigurationEntities.*; |
13 | 13 | import static darkbum.saltymod.common.config.ModConfigurationItems.*; |
14 | 14 | import static darkbum.saltymod.common.config.ModConfigurationModCompatibility.*; |
15 | 15 | import static darkbum.saltymod.common.config.ModConfigurationWorldGeneration.*; |
@@ -76,7 +76,7 @@ public class ModItems { |
76 | 76 | public static Item frozen_honey; |
77 | 77 | public static Item royal_jelly; |
78 | 78 | public static Item mineral_mud_ball; |
79 | | - public static Item horn; |
| 79 | + public static Item sheep_horn; |
80 | 80 | public static Item baking_soda; |
81 | 81 | public static Item powdered_milk; |
82 | 82 | public static Item salt; |
@@ -228,7 +228,7 @@ public static void init() { |
228 | 228 | royal_jelly = new Item().setCreativeTab(tab).setUnlocalizedName("royal_jelly").setTextureName("saltymod:royal_jelly"); |
229 | 229 |
|
230 | 230 | mineral_mud_ball = new Item().setCreativeTab(tab).setUnlocalizedName("mineral_mud_ball").setTextureName("saltymod:mineral_mud_ball"); |
231 | | - horn = new Item().setCreativeTab(tab).setUnlocalizedName("horn").setTextureName("saltymod:horn"); |
| 231 | + sheep_horn = new Item().setCreativeTab(tab).setUnlocalizedName("sheep_horn").setTextureName("saltymod:sheep_horn"); |
232 | 232 |
|
233 | 233 | baking_soda = new Item().setCreativeTab(tab).setUnlocalizedName("baking_soda").setTextureName("saltymod:baking_soda"); |
234 | 234 | powdered_milk = new ItemPowderedMilk("powdered_milk", tab).setTextureName("saltymod:powdered_milk"); |
@@ -728,7 +728,7 @@ public static void init() { |
728 | 728 | registerItem(frozen_honey, "frozen_honey", enableHoney); |
729 | 729 | registerItem(royal_jelly, "royal_jelly", enableHoney); |
730 | 730 | registerItem(mineral_mud_ball, "mineral_mud_ball", enableMineralMud); |
731 | | - registerItem(horn, "horn", ModConfigurationEntities.enableHornedSheep); |
| 731 | + registerItem(sheep_horn, "sheep_horn", enableHornedSheep); |
732 | 732 | registerItem(baking_soda, "baking_soda"); |
733 | 733 | registerItem(powdered_milk, "powdered_milk"); |
734 | 734 | registerItem(salt, "salt"); |
|
0 commit comments