Compare commits

...

2 Commits
1.0.2 ... main

@ -31,10 +31,10 @@ public class IronChestMain implements ModInitializer {
LOGGER.info("AFloydIronChest initialized.");
//Config
Toml toml = new Toml().read(this.getConfig());
int ironChestId = toml.getLong("ids.ironChestID", (long)800).intValue();
int goldChestId = toml.getLong("ids.goldChestID", (long)801).intValue();
int diamondChestId = toml.getLong("ids.diamondChestID", (long)802).intValue();
int steelChestId = toml.getLong("ids.steelChestID", (long)803).intValue();
int ironChestId = toml.getLong("ids.ironChestID", (long)900).intValue();
int goldChestId = toml.getLong("ids.goldChestID", (long)901).intValue();
int diamondChestId = toml.getLong("ids.diamondChestID", (long)902).intValue();
int steelChestId = toml.getLong("ids.steelChestID", (long)903).intValue();
//Blocks
@ -57,6 +57,7 @@ public class IronChestMain implements ModInitializer {
"steelchesttop.png", "steelchestbottom.png",
"steelchestfront.png", "steelchestside.png", "steelchestside.png", "steelchestside.png",
Block.soundMetalFootstep, 5, 6, 0);
//Recipes
RecipeHelper.Crafting.createRecipe(IronChest, 1, new Object[]{
"AAA",

Loading…
Cancel
Save