* cleanups

* bugfix += != =+
This commit is contained in:
jendave
2011-08-06 10:50:44 +00:00
parent 1277f0fed5
commit 5c0cbda8af
4 changed files with 7 additions and 35 deletions

View File

@@ -73,9 +73,7 @@ public class DeckConverter {
return o;
} else if(o instanceof forge.Deck[]) {
//a new-type booster deck
//TODO: FIX this impossible cast
Deck d = (Deck) o;
return d.migrate();
return o;
} else if(o instanceof Deck) {
// an old type deck
Deck d = (Deck) o;