Increase song priority

This commit is contained in:
Emik 2026-06-15 21:06:28 +02:00
parent 0145e774a5
commit 18624dc29f
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF
2 changed files with 7 additions and 3 deletions

View file

@ -18,5 +18,5 @@
"conflicts": [
"Jen"
],
"version": "1.7.22"
"version": "1.7.23"
}

View file

@ -12,7 +12,7 @@ SMODS.Sound({
select_music_track = function()
for _, v in pairs(SMODS.find_card("j_jane_saint")) do
if v.ability.extra.is_attuned then
return Jane.sinister and -1 / 0 or 10
return 201
end
end
@ -25,9 +25,13 @@ SMODS.Sound({
path = "music_attuned_sinister.ogg",
volume = 1,
select_music_track = function()
if not Jane.sinister then
return -1 / 0
end
for _, v in pairs(SMODS.find_card("j_jane_saint")) do
if v.ability.extra.is_attuned then
return Jane.sinister and 10 or -1 / 0
return 202
end
end