1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-06 09:13:45 -09:00

[minor] Fixed npe check of Ensnaring Bridge.

This commit is contained in:
LevelX2 2013-04-19 23:04:12 +02:00
parent a3411f2486
commit b600b03e65

View file

@ -100,13 +100,11 @@ class EnsnaringBridgeEffect extends ReplacementEffectImpl<EnsnaringBridgeEffect>
Permanent permanent = game.getPermanent(event.getSourceId()); Permanent permanent = game.getPermanent(event.getSourceId());
if (permanent != null) { if (permanent != null) {
Player player = game.getPlayer(source.getControllerId()); Player player = game.getPlayer(source.getControllerId());
if (player.getInRange().contains(permanent.getControllerId())) { if (player != null && player.getInRange().contains(permanent.getControllerId())) {
Player controller = game.getPlayer(source.getControllerId()); Player controller = game.getPlayer(source.getControllerId());
if(player != null){ int cardInHand = controller.getHand().size();
int cardInHand = controller.getHand().size(); if (permanent.getPower().getValue() > cardInHand){
if (permanent.getPower().getValue() > cardInHand){ return true;
return true;
}
} }
} }
} }