aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/pers
diff options
context:
space:
mode:
authorbombcar <github@bombcar.com>2022-03-04 16:10:02 -0600
committerGitHub <noreply@github.com>2022-03-04 23:10:02 +0100
commit7156325eb77a3df32be06caefe40b1c5eb3b932d (patch)
treebbd27ba78f03a120135fce02dff90f8f6b2e4cb9 /src/main/java/pers
parent793693e6f2f1280a4539658e2ffab8560c59f00c (diff)
downloadGT5-Unofficial-7156325eb77a3df32be06caefe40b1c5eb3b932d.tar.gz
GT5-Unofficial-7156325eb77a3df32be06caefe40b1c5eb3b932d.tar.bz2
GT5-Unofficial-7156325eb77a3df32be06caefe40b1c5eb3b932d.zip
update for maven (#16)
Diffstat (limited to 'src/main/java/pers')
-rw-r--r--src/main/java/pers/gwyog/gtneioreplugin/GTNEIOrePlugin.java4
1 files changed, 2 insertions, 2 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");