Fix ids in default config FOR REAL THIS TIME

main
Astoria 1 year ago
parent d385aae5ee
commit 30d1c763bd

@ -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

@ -1,6 +1,6 @@
[ids]
ironChestID = 800
goldChestID = 801
diamondChestID = 802
steelChestID = 803
ironChestID = 900
goldChestID = 901
diamondChestID = 902
steelChestID = 903
diamondWindowID = 7
Loading…
Cancel
Save