diff options
| author | Alexdoru <57050655+Alexdoru@users.noreply.github.com> | 2024-09-10 14:15:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-10 12:15:46 +0000 |
| commit | 4552bd73175270d941e1af88208d156276751fb4 (patch) | |
| tree | e0e945ee4bb627e27a42a4c9f81fe16f981d3d7f /src/main/java/gtPlusPlus/core/common | |
| parent | 07a668f7cc77770360b8184ad3964c60722ea936 (diff) | |
| download | GT5-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.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(); |
