Skip to content

Commit

Permalink
1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
syd711 committed Sep 30, 2022
1 parent f82c9a2 commit 1adf8ae
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions resources/card-generator.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Fri Sep 30 18:22:22 CEST 2022
#Fri Sep 30 18:24:14 CEST 2022
card.alphacomposite.black=5
card.alphacomposite.white=0
card.background=Old Bumbers.jpg
Expand Down Expand Up @@ -27,4 +27,4 @@ card.title.font.style=0
card.title.text=Highscores
card.title.y.offset=22
card.useDirectB2S=true
popper.screen=Other2
popper.screen=GameInfo
2 changes: 1 addition & 1 deletion resources/overlay-generator.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Fri Sep 30 18:21:53 CEST 2022
#Fri Sep 30 18:23:53 CEST 2022
overlay.alphacomposite.black=0
overlay.alphacomposite.white=0
overlay.background=background4k.jpg
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void tableLaunched(TableStatusChangedEvent tableStatusChangedEvent) {
public void tableExited(TableStatusChangedEvent tableStatusChangedEvent) {
try {
String targetScreen = Config.getCardGeneratorConfig().get("popper.screen");
if (StringUtils.isEmpty(targetScreen)) {
if (!StringUtils.isEmpty(targetScreen)) {
GameInfo gameInfo = tableStatusChangedEvent.getGameInfo();
LOG.info("Executing highscore card generation for '" + gameInfo + "'");
CardGenerator.generateCard(service, gameInfo);
Expand Down

0 comments on commit 1adf8ae

Please sign in to comment.