Fix Unified Strike

Unified Strike currently does nothing at all because the Outcome is set wrong.
This commit is contained in:
Thomas Winwood 2018-01-24 13:45:37 +00:00 committed by GitHub
parent 938bb26974
commit 1baf29d194
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,8 +75,8 @@ class UnifiedStrikeEffect extends OneShotEffect {
}
UnifiedStrikeEffect() {
super(Outcome.Benefit);
this.staticText = "";
super(Outcome.Exile);
this.staticText = "Exile target attacking creature if its power is less than or equal to the number of Soldiers on the battlefield.";
}
UnifiedStrikeEffect(final UnifiedStrikeEffect effect) {