diff options
Diffstat (limited to 'src/main/java/gtPlusPlus/core/common')
| -rw-r--r-- | src/main/java/gtPlusPlus/core/common/CommonProxy.java | 6 |
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(); |
