diff --git a/src/graphics/_misc/themes/nsgspr24/CountdownLogo.png b/src/graphics/_misc/themes/nsgspr24/CountdownLogo.png index a2a3b6e..5d590e0 100644 Binary files a/src/graphics/_misc/themes/nsgspr24/CountdownLogo.png and b/src/graphics/_misc/themes/nsgspr24/CountdownLogo.png differ diff --git a/src/graphics/_misc/themes/nsgspr24/IntermissionLogo.png b/src/graphics/_misc/themes/nsgspr24/IntermissionLogo.png index 924dacb..6bc00c8 100644 Binary files a/src/graphics/_misc/themes/nsgspr24/IntermissionLogo.png and b/src/graphics/_misc/themes/nsgspr24/IntermissionLogo.png differ diff --git a/src/graphics/_misc/themes/nsgspr24/OmnibarLogo.png b/src/graphics/_misc/themes/nsgspr24/OmnibarLogo.png index 3f66755..6a43e0d 100644 Binary files a/src/graphics/_misc/themes/nsgspr24/OmnibarLogo.png and b/src/graphics/_misc/themes/nsgspr24/OmnibarLogo.png differ diff --git a/src/graphics/omnibar/components/Ticker/Prize.vue b/src/graphics/omnibar/components/Ticker/Prize.vue index 04a5d2f..7575dce 100644 --- a/src/graphics/omnibar/components/Ticker/Prize.vue +++ b/src/graphics/omnibar/components/Ticker/Prize.vue @@ -62,7 +62,7 @@ export default class extends Vue { } get symbol(): string { - return nodecg.bundleConfig.event.currency?.symbol || '$'; + return nodecg.bundleConfig.event.currency.symbol || '$'; } async created(): Promise { diff --git a/src/graphics/omnibar/components/Total.vue b/src/graphics/omnibar/components/Total.vue index 4e3521d..a98d3a9 100644 --- a/src/graphics/omnibar/components/Total.vue +++ b/src/graphics/omnibar/components/Total.vue @@ -155,8 +155,8 @@ export default class extends Vue { get totalStr(): string { // "Reset" value every 10k, specific to ESA Legends 2023. - const symbol = nodecg.bundleConfig.event.currency.symbol; - const countryCode = nodecg.bundleConfig.event.currency.countryCode; + const { symbol } = nodecg.bundleConfig.event.currency; + const { countryCode } = nodecg.bundleConfig.event.currency; const esal23 = nodecg.bundleConfig.event.shorts === 'esal23'; diff --git a/src/graphics/omnibar/components/sfx/mario_coin.mp3 b/src/graphics/omnibar/components/sfx/mario_coin.mp3 index f834f63..77ed000 100644 Binary files a/src/graphics/omnibar/components/sfx/mario_coin.mp3 and b/src/graphics/omnibar/components/sfx/mario_coin.mp3 differ