Implemented Weathered Bodyguards

This commit is contained in:
Evan Kranzler 2017-10-05 13:31:05 -04:00
parent 5e37c1d93c
commit 3b0b923b7c
3 changed files with 133 additions and 0 deletions

View file

@ -655,6 +655,10 @@ public class CombatGroup implements Serializable, Copyable<CombatGroup> {
this.blocked = blocked;
}
public boolean getBlocked() {
return blocked;
}
@Override
public CombatGroup copy() {
return new CombatGroup(this);