diff options
author | bombcar <github@bombcar.com> | 2022-03-04 16:10:02 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-04 23:10:02 +0100 |
commit | 7156325eb77a3df32be06caefe40b1c5eb3b932d (patch) | |
tree | bbd27ba78f03a120135fce02dff90f8f6b2e4cb9 /src | |
parent | 793693e6f2f1280a4539658e2ffab8560c59f00c (diff) | |
download | GT5-Unofficial-7156325eb77a3df32be06caefe40b1c5eb3b932d.tar.gz GT5-Unofficial-7156325eb77a3df32be06caefe40b1c5eb3b932d.tar.bz2 GT5-Unofficial-7156325eb77a3df32be06caefe40b1c5eb3b932d.zip |
update for maven (#16)
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/pers/gwyog/gtneioreplugin/GTNEIOrePlugin.java | 4 | ||||
-rw-r--r-- | src/main/resources/mcmod.info | 32 |
2 files changed, 20 insertions, 16 deletions
diff --git a/src/main/java/pers/gwyog/gtneioreplugin/GTNEIOrePlugin.java b/src/main/java/pers/gwyog/gtneioreplugin/GTNEIOrePlugin.java index 8adcc41c10..a324621a3b 100644 --- a/src/main/java/pers/gwyog/gtneioreplugin/GTNEIOrePlugin.java +++ b/src/main/java/pers/gwyog/gtneioreplugin/GTNEIOrePlugin.java @@ -27,8 +27,8 @@ public class GTNEIOrePlugin { @EventHandler public void preinit(FMLPreInitializationEvent event) { - Config c = new Config(event, this.MODID + ".cfg"); - csv = c.tConfig.getBoolean("print csv", "ALL", false, "princsv, you need apache commons collections to be injected in the minecraft jar."); + Config c = new Config(event, MODID + ".cfg"); + csv = c.tConfig.getBoolean("print csv", "ALL", false, "print csv, you need apache commons collections to be injected in the minecraft jar."); CSVname = c.tConfig.getString("CSV_name", "ALL", event.getModConfigurationDirectory() + "/GTNH-Oresheet.csv", "rename the oresheet here, it will appear in /config"); CSVnameSmall= c.tConfig.getString("CSV_name_for_Small_Ore_Sheet", "ALL", event.getModConfigurationDirectory() + "/GTNH-Small-Ores-Sheet.csv", "rename the oresheet here, it will appear in /config"); toolTips = c.tConfig.getBoolean("DimTooltip", "ALL", true, "Activates Dimension Tooltips"); diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info index 350b3bd56d..f46fb75db6 100644 --- a/src/main/resources/mcmod.info +++ b/src/main/resources/mcmod.info @@ -1,16 +1,20 @@ -[ { - "modid": "${modId}", - "name": "${modName}", - "description": "A forge mod which adds NEI plugins for GregTech5's ores. Modded for GT:NH", - "version": "${modVersion}", - "mcversion": "${minecraftVersion}", - "url": "", - "updateUrl": "", - "authorList": ["GWYOG","bartimaeusnek"], - "credits": "", - "logoFile": "", - "screenshots": [], - "dependencies": [] + "modListVersion": 2, + "modList": [{ + "modid": "${modId}", + "name": "${modName}", + "description": "A forge mod which adds NEI plugins for GregTech5's ores. Modded for GTNH", + "version": "${modVersion}", + "mcversion": "${minecraftVersion}", + "url": "", + "updateUrl": "", + "authorList": ["GWYOG", "bartimaeusnek"], + "credits": "", + "logoFile": "", + "screenshots": [], + "requiredMods": ["Forge", "gregtech", "NotEnoughItems"], + "dependencies": ["gregtech", "NotEnoughItems"], + "dependants": [], + "useDependencyInformation": true + }] } -] |