Fix compile error in forge-gui-mobile

Version bump to 1.5.38.005
This commit is contained in:
drdev
2015-03-19 07:52:34 +00:00
parent e3b5be8c2c
commit 86dcba5be5
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@
<packaging.type>jar</packaging.type> <packaging.type>jar</packaging.type>
<build.min.memory>-Xms128m</build.min.memory> <build.min.memory>-Xms128m</build.min.memory>
<build.max.memory>-Xmx1024m</build.max.memory> <build.max.memory>-Xmx1024m</build.max.memory>
<alpha-version>1.5.38.004</alpha-version> <alpha-version>1.5.38.005</alpha-version>
</properties> </properties>
<parent> <parent>

View File

@@ -37,7 +37,7 @@ import forge.util.FileUtil;
import forge.util.Utils; import forge.util.Utils;
public class Forge implements ApplicationListener { public class Forge implements ApplicationListener {
public static final String CURRENT_VERSION = "1.5.38.004"; public static final String CURRENT_VERSION = "1.5.38.005";
private static final ApplicationListener app = new Forge(); private static final ApplicationListener app = new Forge();
private static Clipboard clipboard; private static Clipboard clipboard;

View File

@@ -296,7 +296,7 @@ public class ConstructedScreen extends LaunchScreen {
PlayerPanel playerPanel = playerPanels.get(i); PlayerPanel playerPanel = playerPanels.get(i);
String name = getPlayerName(i); String name = getPlayerName(i);
LobbyPlayer lobbyPlayer = playerPanel.isPlayerAI() ? GamePlayerUtil.createAiPlayer(name, LobbyPlayer lobbyPlayer = playerPanel.isPlayerAI() ? GamePlayerUtil.createAiPlayer(name,
getPlayerAvatar(i)) : GamePlayerUtil.getGuiPlayer(name, i == 0); getPlayerAvatar(i)) : GamePlayerUtil.getGuiPlayer(name, playerPanel.avatarIndex, i == 0);
RegisteredPlayer rp = playerPanel.deckChooser.getPlayer(); RegisteredPlayer rp = playerPanel.deckChooser.getPlayer();
if (appliedVariants.isEmpty()) { if (appliedVariants.isEmpty()) {