Skip to content

Commit

Permalink
Merge pull request #322 from AcousticAlter/main
Browse files Browse the repository at this point in the history
Added a check for Marcy's quest being done
  • Loading branch information
BrendaK7200 authored Feb 28, 2025
2 parents a67a6f8 + f8aefe1 commit 70b0a42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mods/dpr_light/scripts/world/cutscenes/hometown.lua
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ return {
end,

digicall = function(cutscene, event)
if Game:hasDLC("dlc_digimon") and (#Game.party == 1 and Game:hasPartyMember("hero")) and Game:getFlag("jamm_closure") == true and (Game:hasUnlockedPartyMember("dess") and Game:hasUnlockedPartyMember("susie") and Game:hasUnlockedPartyMember("noelle") and Game:hasUnlockedPartyMember("brenda")) and (Game:hasUnlockedPartyMember("ceroba") or Game:getFlag("whatevertheflagfordeadcerobais") == true) then
if Game:hasDLC("dlc_digimon") and (#Game.party == 1 and Game:hasPartyMember("hero")) and Game:getFlag("jamm_closure") == true and Game:getFlag("marcy_unlocked") == true and (Game:hasUnlockedPartyMember("dess") and Game:hasUnlockedPartyMember("susie") and Game:hasUnlockedPartyMember("noelle") and Game:hasUnlockedPartyMember("brenda")) and (Game:hasUnlockedPartyMember("ceroba") or Game:getFlag("whatevertheflagfordeadcerobais") == true) then
Game:setFlag("hometown_digicall", true)
Game:setFlag("hometown_digisetup", true)
Game.world.music:stop()
Expand Down

0 comments on commit 70b0a42

Please sign in to comment.