Skip to content

Commit d9e94fd

Browse files
authored
Merge pull request #10198 from Wingdinggaster656/FixConventionReturn
A missing `return "derandom"` in `monika_conventions`
2 parents 8014239 + 7cd1f01 commit d9e94fd

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

Monika After Story/game/script-topics.rpy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17916,7 +17916,7 @@ label monika_conventions:
1791617916
m 1wuo "It's crazy what people can do when they're passionate about something!"
1791717917
m 3eua "I also hear there's a lot of fun activities like idol dance shows, trivia, and other things to do there."
1791817918
m 1eubsa "I would love to go to one with you someday, [mas_get_player_nickname()]~"
17919-
return
17919+
return "derandom"
1792017920

1792117921
init 5 python:
1792217922
addEvent(

Monika After Story/game/updates.rpy

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,6 @@ label v0_3_1(version=version): # 0.3.1
374374

375375
# non generic updates go here
376376

377-
378377
# 0.12.19
379378
label v0_12_19(version="v0_12_19"):
380379
python hide:
@@ -401,12 +400,10 @@ label v0_12_19(version="v0_12_19"):
401400
):
402401
mas_unlockEVL("monika_affection_nickname", "EVE")
403402

404-
return
403+
# fix conventions topic not derandoming
404+
if mas_seenEvent("monika_conventions"):
405+
mas_hideEVL("monika_conventions", derandom=True)
405406

406-
# 0.12.18
407-
label v0_12_18(version="v0_12_18"):
408-
python hide:
409-
pass
410407
return
411408

412409
# 0.12.13

0 commit comments

Comments
 (0)