From 73a8779a5f46eeb449005840fdf1b9120816e380 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sat, 19 Mar 2016 17:49:54 +1000 Subject: Updated SafeBlock GUI, Removed 2 unused buttons and their related code. Playercache is now Active and caching playerdata, for use in GUIs and other places. ;) Player Safe Blocks should now be 100% intruder safe. --- src/Java/miscutil/core/lib/CORE.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/Java/miscutil/core/lib') diff --git a/src/Java/miscutil/core/lib/CORE.java b/src/Java/miscutil/core/lib/CORE.java index 12be9e9a03..4acd30d4d8 100644 --- a/src/Java/miscutil/core/lib/CORE.java +++ b/src/Java/miscutil/core/lib/CORE.java @@ -1,5 +1,7 @@ package miscutil.core.lib; +import java.util.Map; + import miscutil.core.creativetabs.AddToCreativeTab; public class CORE { @@ -10,6 +12,7 @@ public class CORE { public static final boolean DEBUG = true; public static final boolean LOAD_ALL_CONTENT = false; public static final int GREG_FIRST_ID = 760; + public static Map PlayerCache; public static final Class TAB = AddToCreativeTab.class; -- cgit