mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
- Fixed Island of Wak Wak.
This commit is contained in:
parent
545b21881b
commit
ca0371eade
1 changed files with 2 additions and 2 deletions
|
@ -95,8 +95,8 @@ class IslandOfWakWakEffect extends OneShotEffect {
|
|||
public boolean apply(Game game, Ability source) {
|
||||
Permanent targetCreature = game.getPermanent(source.getFirstTarget());
|
||||
if (targetCreature != null) {
|
||||
MageInt toughness = targetCreature.getToughness();
|
||||
game.addEffect(new SetPowerToughnessTargetEffect(0, toughness.getValue(), Duration.EndOfTurn), source);
|
||||
int toughness = targetCreature.getToughness().getBaseValue();
|
||||
game.addEffect(new SetPowerToughnessTargetEffect(0, toughness, Duration.EndOfTurn), source);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue