Anotha one
This commit is contained in:
parent
8efe68111b
commit
cb2afb5a4f
@ -377,6 +377,7 @@ public class FactionsEntityListener implements Listener {
|
|||||||
if (defLocFaction.noPvPInTerritory()) {
|
if (defLocFaction.noPvPInTerritory()) {
|
||||||
if (damager instanceof Player) {
|
if (damager instanceof Player) {
|
||||||
if (notify) {
|
if (notify) {
|
||||||
|
FPlayer attacker = FPlayers.getInstance().getByPlayer((Player) damager);
|
||||||
attacker.msg(TL.PLAYER_CANTHURT, (defLocFaction.isSafeZone() ? TL.REGION_SAFEZONE.toString() : TL.REGION_PEACEFUL.toString()));
|
attacker.msg(TL.PLAYER_CANTHURT, (defLocFaction.isSafeZone() ? TL.REGION_SAFEZONE.toString() : TL.REGION_PEACEFUL.toString()));
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
@ -386,7 +387,7 @@ public class FactionsEntityListener implements Listener {
|
|||||||
|
|
||||||
if (!(damager instanceof Player)) return true;
|
if (!(damager instanceof Player)) return true;
|
||||||
|
|
||||||
attacker = FPlayers.getInstance().getByPlayer((Player) damager);
|
FPlayer attacker = FPlayers.getInstance().getByPlayer((Player) damager);
|
||||||
|
|
||||||
if (attacker == null || attacker.getPlayer() == null) return true;
|
if (attacker == null || attacker.getPlayer() == null) return true;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user