From 3619707e65aad38d85b54dfd5f25f0338b150b7a Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 6 May 2013 15:15:09 +0200 Subject: [PATCH] Removed private keyword from BirdToken of Scion of Vitu Ghazi. --- .../sets/dragonsmaze/ScionOfVituGhazi.java | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/Mage.Sets/src/mage/sets/dragonsmaze/ScionOfVituGhazi.java b/Mage.Sets/src/mage/sets/dragonsmaze/ScionOfVituGhazi.java index 041173b2774..8048248f487 100644 --- a/Mage.Sets/src/mage/sets/dragonsmaze/ScionOfVituGhazi.java +++ b/Mage.Sets/src/mage/sets/dragonsmaze/ScionOfVituGhazi.java @@ -78,16 +78,17 @@ public class ScionOfVituGhazi extends CardImpl { return new ScionOfVituGhazi(this); } - private class BirdToken extends Token { - - public BirdToken() { - super("Bird", "1/1 white Bird creature token with flying"); - cardType.add(CardType.CREATURE); - color.setWhite(true); - subtype.add("Bird"); - power = new MageInt(1); - toughness = new MageInt(1); - addAbility(FlyingAbility.getInstance()); - } - } } + + +class BirdToken extends Token { + public BirdToken() { + super("Bird", "1/1 white Bird creature token with flying"); + cardType.add(CardType.CREATURE); + color.setWhite(true); + subtype.add("Bird"); + power = new MageInt(1); + toughness = new MageInt(1); + addAbility(FlyingAbility.getInstance()); + } +} \ No newline at end of file