Slightly better claim messages. Much better LWC.

This commit is contained in:
Olof Larsson
2014-10-03 11:23:54 +02:00
parent e722662223
commit 636e72ee67
10 changed files with 153 additions and 48 deletions

View File

@ -29,11 +29,11 @@ public class EventFactionsPvpDisallowed extends EventFactionsAbstract
private final Player attacker;
public Player getAttacker() { return this.attacker; }
public MPlayer getUAttacker() { return this.attacker == null ? null : MPlayer.get(this.attacker); }
public MPlayer getMAttacker() { return this.attacker == null ? null : MPlayer.get(this.attacker); }
private final Player defender;
public Player getDefender() { return this.defender; }
public MPlayer getUDefender() { return this.defender == null ? null : MPlayer.get(this.defender); }
public MPlayer getMDefender() { return this.defender == null ? null : MPlayer.get(this.defender); }
private final EntityDamageByEntityEvent event;
public EntityDamageByEntityEvent getEvent() { return this.event; }