- C14: Added Crown of Doom

This commit is contained in:
swordshine
2014-11-11 02:26:28 +00:00
parent 2f0d3b524a
commit 588b99b576
3 changed files with 13 additions and 0 deletions

View File

@@ -1766,6 +1766,10 @@ public class Player extends GameEntity implements Comparable<Player> {
if (equals(sourceController)) {
return false;
}
} else if (property.equals("OtherThanSourceOwner")) {
if (equals(source.getOwner())) {
return false;
}
} else if (property.equals("wasDealtDamageBySourceThisGame")) {
if (!source.getDamageHistory().getThisGameDamaged().contains(this)) {
return false;