adjust height for 5C decks, fix custom starter deck startup

This commit is contained in:
Anthony Calosa
2023-03-07 10:39:50 +08:00
parent 0722fa9a58
commit 4fed70aef9
2 changed files with 2 additions and 2 deletions

View File

@@ -195,7 +195,7 @@ public class NewGameScene extends UIScene {
gender.getCurrentIndex() == 0,
race.getCurrentIndex(),
avatarIndex,
colorIds[colorId.getCurrentIndex()],
colorIds[custom.isEmpty() ? colorId.getCurrentIndex() : 0],
Config.instance().getConfigData().difficulties[difficulty.getCurrentIndex()],
modes.get(mode.getCurrentIndex()), colorId.getCurrentIndex(),
editionIds[starterEdition.getCurrentIndex()], 0);//maybe replace with enum

View File

@@ -263,7 +263,7 @@ public class MapStage extends GameStage {
TypingLabel deckColors = Controls.newTypingLabel(Controls.colorIdToTypingString(DeckProxy.getColorIdentity(deck), true).toUpperCase());
deckColors.skipToTheEnd();
deckColors.setAlignment(Align.left);
deckColors.setPosition(58, 60);
deckColors.setPosition(58, 40);
TextraLabel deckname = Controls.newTextraLabel(deck.getName());
deckname.setAlignment(Align.center);
deckname.setWrap(true);