Skip to content

Commit

Permalink
Merge pull request #3960 from frutescens/bannerHotfix
Browse files Browse the repository at this point in the history
[Bug][Hotfix] Missing Banners
  • Loading branch information
f-fsantos authored Sep 1, 2024
2 parents 86fe4dd + d7cc8a6 commit dc9a485
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/loading-scene.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export class LoadingScene extends SceneBase {
} else {
this.loadAtlas("types", "");
}
const availableLangs = ["en", "de", "it", "fr", "ja", "ko", "es", "pt_BR", "zh_CN"];
const availableLangs = ["en", "de", "it", "fr", "ja", "ko", "es", "pt-BR", "zh-CN"];
if (lang && availableLangs.includes(lang)) {
this.loadImage("september-update-"+lang, "events");
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/timed-event-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const timedEvents: TimedEvent[] = [
xPosition: 19,
yPosition: 115,
scale: 0.30,
availableLangs: ["en", "de", "it", "fr", "ja", "ko", "es", "pt_BR", "zh_CN"]
availableLangs: ["en", "de", "it", "fr", "ja", "ko", "es", "pt-BR", "zh-CN"]
}
];

Expand Down

0 comments on commit dc9a485

Please sign in to comment.