Skip to content

Commit

Permalink
swapped fastfood catergory
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePotatoGuy committed Apr 28, 2018
1 parent f046fc2 commit c648197
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Monika After Story/game/script-topics.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -5799,7 +5799,7 @@ label monika_familygathering:
return

init 5 python:
addEvent(Event(persistent.event_database,eventlabel="monika_fastfood",category=['life','you'],prompt="Do you like fast food?",random=True))
addEvent(Event(persistent.event_database,eventlabel="monika_fastfood",category=['life','you'],prompt="Do you like fast food?",pool=True))

label monika_fastfood:
m 1c "Hm? Do I like fast food?"
Expand Down
6 changes: 6 additions & 0 deletions Monika After Story/game/updates.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,12 @@ label v0_8_0(version="v0_8_0"):
for k in updates.topics["v0_7_4"]:
mas_eraseTopic(k, persistent.event_database)

# change fast food topic values
m_ff = evhand.event_database.get("monika_fastfood", None)
if m_ff:
hideEvent(m_ff, derandom=True)
m_ff.pool = True

return

# NOTE: well shit this wasnt ready and now it has to be done later
Expand Down

0 comments on commit c648197

Please sign in to comment.