Added CompoundCondition, AttachedToTappedCondition and EquipmentAttachedCondition.

This commit is contained in:
LevelX2 2013-11-21 10:59:50 +01:00
parent 176c2a76b4
commit b7c45a7090
9 changed files with 202 additions and 12 deletions

View file

@ -436,7 +436,7 @@ public class GameState implements Serializable, Copyable<GameState> {
public Permanent getPermanent(UUID permanentId) {
if (permanentId != null && battlefield.containsPermanent(permanentId)) {
Permanent permanent = battlefield.getPermanent(permanentId);
setZone(permanent.getId(), Zone.BATTLEFIELD);
setZone(permanent.getId(), Zone.BATTLEFIELD); // shouldn't this be set anyway? (LevelX2)
return permanent;
}
return null;