From ec10a46889a90b6c5f6cbc08e931cb7dc5996498 Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Sun, 21 Aug 2016 15:45:29 -0500 Subject: [PATCH] Remove debug messages. --- TwosideKeeper.jar | Bin 504405 -> 504405 bytes .../plugin/TwosideKeeper/ItemCubeWindow.java | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TwosideKeeper.jar b/TwosideKeeper.jar index e3b029a797bf2dcdf48999760e6ee9366f6aac9d..4727ec5e763961f788d12a3f48835d243636333e 100644 GIT binary patch delta 423 zcmV;Y0a*UkUSL z@B{z==?ar^8y~mb?*kA84yt_>Ng+?y-^By~0KN&6z;z#&-R}bqmv5E_2DdKt1Jwh6 zt=q@gaqtM`2sBejdKqaoL8C}SDF(y)Ncoja;xV51)jUKR(_~$b8O)ZF`-ev1=cPz4 zJwV|OFvsu<@+2?(jJ2b!TJ4^YyASYD0Dqxt#?So|%Dr3U{#jY>pC4yjGRjc3`{2J} z^A)V+!T7))z6c+{4Pr^uRO8na_s2GW%C(&y)ed^pu3{LSSf;mALl0c~^W)L{0=N8H z2N4I#!Rbj(Q-v6QH^2L=V1ZIBs>L z-_qL@;10&W)?061`Y-W-HF^{Gt!9j^W=vbnn5*9NEvyvv{8}_M=K~7^ z!%MEoh0^ld@4jaiU}=chzA|5BuIGK1{Klf9 zrHEygrpn%)EwdH`sw@&|eptKYkC)m<3I9J?a!S3Ko7NrYN%KDW*Lm@W&p|5F=3bPcwe*o{YU1riMKY^NPMt|1tkYVQlO~k^ww$Y z0@FiyS)``#oyN}5Zv2ZGh*^M`b-VE|whi@+y3?OjvRg6gY?rTMUnR}7uyXq8sqE1l PpfCpo?RLFs?CLTA5Lmdq diff --git a/src/sig/plugin/TwosideKeeper/ItemCubeWindow.java b/src/sig/plugin/TwosideKeeper/ItemCubeWindow.java index 261685d..cab2d5c 100644 --- a/src/sig/plugin/TwosideKeeper/ItemCubeWindow.java +++ b/src/sig/plugin/TwosideKeeper/ItemCubeWindow.java @@ -15,7 +15,7 @@ public class ItemCubeWindow { public static void addItemCubeWindow(Player p, int id) { PlayerStructure pd = PlayerStructure.GetPlayerStructure(p); pd.itemcubelist.add(id); - TwosideKeeper.log("Added cube "+id+" to Item Cube List for Player "+p.getName()+". New list: "+pd.itemcubelist.toString(), 2); + TwosideKeeper.log("Added cube "+id+" to Item Cube List for Player "+p.getName()+". New list: "+pd.itemcubelist.toString(), 3); } public static void popItemCubeWindow(Player p) { //Opens the next possible item cube inventory from the list of inventories. @@ -23,7 +23,7 @@ public class ItemCubeWindow { if (pd.itemcubelist.size()>0 && !pd.opened_another_cube) { int index = pd.itemcubelist.size()-1; Integer itemcubeid = pd.itemcubelist.get(index); - TwosideKeeper.log("Popping Item Cube ID "+index+" from "+p.getName()+"'s list.", 2); + TwosideKeeper.log("Popping Item Cube ID "+index+" from "+p.getName()+"'s list.", 3); pd.itemcubelist.remove(index); Bukkit.getScheduler().scheduleSyncDelayedTask(TwosideKeeper.plugin, new Runnable() {