aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/api/objects
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2018-07-01 17:47:03 +1000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2018-07-01 17:47:03 +1000
commit03e72a68aee10a871b3186d141b14c76770c72fb (patch)
tree0d6bc5a013ea001849da23a07f0c39f3747b8fed /src/Java/gtPlusPlus/api/objects
parentdda2f5839508815b28493624cf18a60c261fee28 (diff)
downloadGT5-Unofficial-03e72a68aee10a871b3186d141b14c76770c72fb.tar.gz
GT5-Unofficial-03e72a68aee10a871b3186d141b14c76770c72fb.tar.bz2
GT5-Unofficial-03e72a68aee10a871b3186d141b14c76770c72fb.zip
$ Fixed Custom Spawner Generation.
$ Fixed Custom Spawner Registration. $ Fixed Spawner importing private static fields from the base TileEntity class via reflection. $ Fixed Spawner writing type to NBT.
Diffstat (limited to 'src/Java/gtPlusPlus/api/objects')
-rw-r--r--src/Java/gtPlusPlus/api/objects/Logger.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/api/objects/Logger.java b/src/Java/gtPlusPlus/api/objects/Logger.java
index 52c1c16f52..1ecdaa9e86 100644
--- a/src/Java/gtPlusPlus/api/objects/Logger.java
+++ b/src/Java/gtPlusPlus/api/objects/Logger.java
@@ -127,8 +127,8 @@ public class Logger {
* Special Logger for Reflection related content
*/
public static void REFLECTION(final String s) {
- //if (CORE.DEVENV || CORE.DEBUG)
- //modLogger.info("[Reflection] "+s);
+ if (CORE.DEVENV || CORE.DEBUG)
+ modLogger.info("[Reflection] "+s);
}