Compare commits

..

No commits in common. 'main' and '1.0.2' have entirely different histories.
main ... 1.0.2

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

Loading…
Cancel
Save