diff --git a/forge-gui-android/pom.xml b/forge-gui-android/pom.xml index b99e119372a..1bace9b3d75 100644 --- a/forge-gui-android/pom.xml +++ b/forge-gui-android/pom.xml @@ -7,7 +7,7 @@ jar -Xms128m -Xmx1024m - 1.5.38.004 + 1.5.38.005 diff --git a/forge-gui-mobile/src/forge/Forge.java b/forge-gui-mobile/src/forge/Forge.java index 831f4f3beff..a0785d329ae 100644 --- a/forge-gui-mobile/src/forge/Forge.java +++ b/forge-gui-mobile/src/forge/Forge.java @@ -37,7 +37,7 @@ import forge.util.FileUtil; import forge.util.Utils; 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 Clipboard clipboard; diff --git a/forge-gui-mobile/src/forge/screens/constructed/ConstructedScreen.java b/forge-gui-mobile/src/forge/screens/constructed/ConstructedScreen.java index 9bbdfa22a97..bd1ddef9d36 100644 --- a/forge-gui-mobile/src/forge/screens/constructed/ConstructedScreen.java +++ b/forge-gui-mobile/src/forge/screens/constructed/ConstructedScreen.java @@ -296,7 +296,7 @@ public class ConstructedScreen extends LaunchScreen { PlayerPanel playerPanel = playerPanels.get(i); String name = getPlayerName(i); 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(); if (appliedVariants.isEmpty()) {