Rite of the Raging Storm - Fixed some minor bugs (fixes #2584).

This commit is contained in:
LevelX2 2016-11-12 08:45:43 +01:00
parent 17d7796325
commit 7cd105b951
2 changed files with 37 additions and 6 deletions

View file

@ -89,12 +89,10 @@ public class RiteOfTheRagingStorm extends CardImpl {
class RiteOfTheRagingStormEffect extends OneShotEffect {
private static final String effectText = "that player creates a 5/1 red Elemental creature token named Lightning Rager. "
+ "It has trample, haste, and \"At the beginning of the end step, sacrifice this creature.\"";
RiteOfTheRagingStormEffect() {
super(Outcome.Sacrifice);
staticText = effectText;
staticText = "that player creates a 5/1 red Elemental creature token named Lightning Rager. "
+ "It has trample, haste, and \"At the beginning of the end step, sacrifice this creature.\"";
}
RiteOfTheRagingStormEffect(RiteOfTheRagingStormEffect effect) {
@ -105,8 +103,7 @@ class RiteOfTheRagingStormEffect extends OneShotEffect {
public boolean apply(Game game, Ability source) {
Player player = game.getPlayer(targetPointer.getFirst(game, source));
if (player != null) {
Token lightningRagerToken = new LightningRagerToken();
lightningRagerToken.putOntoBattlefield(1, game, this.getId(), player.getId());
return new LightningRagerToken().putOntoBattlefield(1, game, source.getSourceId(), player.getId());
}
return false;
}