diff --git a/Plugins/Mineplex.Game.Clans/src/mineplex/game/clans/spawn/Spawn.java b/Plugins/Mineplex.Game.Clans/src/mineplex/game/clans/spawn/Spawn.java index af4c7dfd0..92f29b3bf 100644 --- a/Plugins/Mineplex.Game.Clans/src/mineplex/game/clans/spawn/Spawn.java +++ b/Plugins/Mineplex.Game.Clans/src/mineplex/game/clans/spawn/Spawn.java @@ -400,13 +400,13 @@ public class Spawn extends MiniPlugin if (isInSpawn(victim)) { event.SetCancelled("Safe Zone"); - attemptNotify(attacker, "You cannot attack players who are in spawn!"); + attemptNotify(attacker, "You cannot attack players who are in a safe zone!"); return; } else if (isInSpawn(attacker) && !isCombatTagged(attacker)) { event.SetCancelled("Safe Zone"); - attemptNotify(attacker, "You cannot attack untagged players while in spawn!"); + attemptNotify(attacker, "You cannot attack untagged players while in a safe zone!"); return; } } diff --git a/Plugins/Mineplex.Minecraft.Game.Core/src/mineplex/minecraft/game/core/damage/DamageManager.java b/Plugins/Mineplex.Minecraft.Game.Core/src/mineplex/minecraft/game/core/damage/DamageManager.java index de559f25b..8feccdccf 100644 --- a/Plugins/Mineplex.Minecraft.Game.Core/src/mineplex/minecraft/game/core/damage/DamageManager.java +++ b/Plugins/Mineplex.Minecraft.Game.Core/src/mineplex/minecraft/game/core/damage/DamageManager.java @@ -529,7 +529,7 @@ public class DamageManager extends MiniPlugin } } - @EventHandler + @EventHandler (priority = EventPriority.MONITOR) public void DamageSound(CustomDamageEvent event) { if (event.IsCancelled())