aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/core/common
diff options
context:
space:
mode:
authorAlexdoru <57050655+Alexdoru@users.noreply.github.com>2024-09-10 14:15:46 +0200
committerGitHub <noreply@github.com>2024-09-10 12:15:46 +0000
commit4552bd73175270d941e1af88208d156276751fb4 (patch)
treee0e945ee4bb627e27a42a4c9f81fe16f981d3d7f /src/main/java/gtPlusPlus/core/common
parent07a668f7cc77770360b8184ad3964c60722ea936 (diff)
downloadGT5-Unofficial-4552bd73175270d941e1af88208d156276751fb4.tar.gz
GT5-Unofficial-4552bd73175270d941e1af88208d156276751fb4.tar.bz2
GT5-Unofficial-4552bd73175270d941e1af88208d156276751fb4.zip
Change sleep potion buff code (#3076)
Co-authored-by: Martin Robertz <dream-master@gmx.net> Co-authored-by: boubou19 <miisterunknown@gmail.com>
Diffstat (limited to 'src/main/java/gtPlusPlus/core/common')
-rw-r--r--src/main/java/gtPlusPlus/core/common/CommonProxy.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/main/java/gtPlusPlus/core/common/CommonProxy.java b/src/main/java/gtPlusPlus/core/common/CommonProxy.java
index 8de034148b..066dacdd9c 100644
--- a/src/main/java/gtPlusPlus/core/common/CommonProxy.java
+++ b/src/main/java/gtPlusPlus/core/common/CommonProxy.java
@@ -56,12 +56,10 @@ public class CommonProxy {
public void preInit(final FMLPreInitializationEvent e) {
Logger.INFO("Doing some house cleaning.");
- if (!PreloaderCore.DEBUG_MODE) {
- Logger.WARNING("Development mode not enabled.");
- } else if (PreloaderCore.DEBUG_MODE) {
+ if (PreloaderCore.DEBUG_MODE) {
Logger.INFO("Development mode enabled.");
} else {
- Logger.WARNING("Development mode not set.");
+ Logger.WARNING("Development mode not enabled.");
}
AddToCreativeTab.initialiseTabs();