diff --git a/TwosideKeeper.jar b/TwosideKeeper.jar index 0608d79..c69c6f7 100644 Binary files a/TwosideKeeper.jar and b/TwosideKeeper.jar differ diff --git a/src/sig/plugin/TwosideKeeper/DeathManager.java b/src/sig/plugin/TwosideKeeper/DeathManager.java index 34be78e..88c152d 100644 --- a/src/sig/plugin/TwosideKeeper/DeathManager.java +++ b/src/sig/plugin/TwosideKeeper/DeathManager.java @@ -33,6 +33,7 @@ public class DeathManager { } public static void removeDeathStructure(Player p) { ds.remove(getDeathStructure(p)); + p.removePotionEffect(PotionEffectType.GLOWING); PlayerStructure pd = PlayerStructure.GetPlayerStructure(p); pd.deathloot.clear(); pd.hasDied=false; diff --git a/src/sig/plugin/TwosideKeeper/HelperStructures/ItemSet.java b/src/sig/plugin/TwosideKeeper/HelperStructures/ItemSet.java index f609949..d24e12e 100644 --- a/src/sig/plugin/TwosideKeeper/HelperStructures/ItemSet.java +++ b/src/sig/plugin/TwosideKeeper/HelperStructures/ItemSet.java @@ -16,7 +16,7 @@ import sig.plugin.TwosideKeeper.HelperStructures.Common.GenericFunctions; public enum ItemSet { PANROS(1,1, 3,2, 10,10, 20,10), SONGSTEEL(4,2, 6,2, 8,4, 20,10), - DAWNTRACKER(4,4, 6,4, 20,10, 20,10), + DAWNTRACKER(4,4, 20,10, 20,10, 6,4), LORASYS(0,0, 0,0, 0,0, 0,0), JAMDAK(1,1, 3,9, 4,4, 10,5), DARNYS(2,1, 6,13, 5,5, 10,8), diff --git a/src/sig/plugin/TwosideKeeper/TwosideKeeper.java b/src/sig/plugin/TwosideKeeper/TwosideKeeper.java index 896210c..1759565 100644 --- a/src/sig/plugin/TwosideKeeper/TwosideKeeper.java +++ b/src/sig/plugin/TwosideKeeper/TwosideKeeper.java @@ -4873,7 +4873,7 @@ public class TwosideKeeper extends JavaPlugin implements Listener { } p.addPotionEffect(new PotionEffect(PotionEffectType.ABSORPTION,1,0),true); p.removePotionEffect(PotionEffectType.ABSORPTION); - GenericFunctions.addIFrame(p, 20*10); + GenericFunctions.addIFrame(p, Integer.MAX_VALUE); PlayerStructure pd = PlayerStructure.GetPlayerStructure(p); pd.lastdeath=getServerTickTime(); log("Last death: "+pd.lastdeath, 2);