updated CardFactory.main to use CARDSFOLDER (not used unless called directly)

This commit is contained in:
jendave
2011-08-06 08:13:55 +00:00
parent 5029706d80
commit a2cad65a64

View File

@@ -10767,7 +10767,7 @@ public class CardFactory implements NewConstants {
}// copyStats()
public static void main(String[] args) {
CardFactory f = new CardFactory("cards.txt");
CardFactory f = new CardFactory(ForgeProps.getFile(CARDSFOLDER));
Card c = f.getCard("Arc-Slogger", "d");
System.out.println(c.getOwner());
}