- Remove the Players and Command panels

- Some more cleanup
- Cleanup the Animation class (public method signatures unchanged)
This commit is contained in:
elcnesh
2015-04-20 14:19:57 +00:00
parent e7ddc92a3f
commit 62a7b2b98d
21 changed files with 143 additions and 681 deletions

View File

@@ -150,7 +150,6 @@ public class ForgePreferences extends PreferencesStore<ForgePreferences.FPref> {
SHORTCUT_SHOWSTACK ("83"),
SHORTCUT_SHOWCOMBAT ("67"),
SHORTCUT_SHOWCONSOLE ("76"),
SHORTCUT_SHOWPLAYERS ("80"),
SHORTCUT_SHOWDEV ("68"),
SHORTCUT_CONCEDE ("17"),
SHORTCUT_ENDTURN ("69"),

View File

@@ -72,7 +72,7 @@ public class ForgeProfileProperties {
cacheDir = getDir(props, CACHE_DIR_KEY, defaults.getRight());
cardPicsDir = getDir(props, CARD_PICS_DIR_KEY, cacheDir + "pics" + File.separator + "cards" + File.separator);
cardPicsSubDirs = getMap(props, CARD_PICS_SUB_DIRS_KEY);
serverPort = getInt(props, SERVER_PORT_KEY, 0);
serverPort = getInt(props, SERVER_PORT_KEY, 36743); // "Forge" using phone keypad
//ensure directories exist
FileUtil.ensureDirectoryExists(userDir);