* Some minor changes / fixes.

This commit is contained in:
LevelX2 2016-04-14 16:00:56 +02:00
parent ebbbc1daf1
commit ce3c26ab4b
3 changed files with 9 additions and 8 deletions

View file

@ -78,7 +78,7 @@ class PacksDisdainEffect extends OneShotEffect {
PacksDisdainEffect() {
super(Outcome.UnboostCreature);
this.staticText = "Choose a creature type. Target creature gets -1/-1 until end of turn for each permanent of the chosen type you control.";
this.staticText = "Choose a creature type. Target creature gets -1/-1 until end of turn for each permanent of the chosen type you control";
}
PacksDisdainEffect(final PacksDisdainEffect effect) {
@ -108,6 +108,7 @@ class PacksDisdainEffect extends OneShotEffect {
ContinuousEffect effect = new BoostTargetEffect(negativePermanentsCount, negativePermanentsCount, Duration.EndOfTurn, true);
effect.setTargetPointer(new FixedTarget(source.getFirstTarget()));
game.addEffect(effect, source);
return true;
}
return false;
}