mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
Fix compile error in forge-gui-mobile
Version bump to 1.5.38.005
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
<packaging.type>jar</packaging.type>
|
||||
<build.min.memory>-Xms128m</build.min.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>
|
||||
|
||||
<parent>
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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()) {
|
||||
|
||||
Reference in New Issue
Block a user