We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de917a1 commit 310415cCopy full SHA for 310415c
lib/content.lua
@@ -520,9 +520,13 @@ SMODS.Sound({
520
key = "music_big",
521
path = "music_big.ogg",
522
select_music_track = function()
523
- return Cryptid_config.Cryptid
+ if G.GAME.cry_music_big then return G.GAME.cry_music_big end
524
+ if Cryptid_config.Cryptid
525
and Cryptid_config.Cryptid.big_music
- and to_big(G.GAME.round_scores["hand"].amt) > to_big(10) ^ 1000000
526
+ and to_big(G.GAME.round_scores["hand"].amt) > to_big(10) ^ 1000000 then
527
+ G.GAME.cry_music_big = true
528
+ return true
529
+ end
530
end,
531
})
532
SMODS.Sound({
0 commit comments