Skip to content

Commit

Permalink
minor fix for hotkey in import context
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePotatoGuy committed Dec 14, 2017
1 parent a266f50 commit bae1fb2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Monika After Story/game/import_ddlc.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@ init python:
fo.close()

label import_ddlc_persistent_in_settings:
$ prev_songs_enabled = store.songs.enabled
$ prev_dialogue = allow_dialogue
$ store.songs.enabled = False
$ allow_dialogue = False
# $ disable_esc() # tthis doesnt work somehow
call import_ddlc_persistent
$ quick_menu = True
$ store.songs.enabled = True
$ allow_dialogue = True
$ store.songs.enabled = prev_songs_enabled
$ allow_dialogue = prev_dialogue
# $ enable_esc()
return

Expand Down

0 comments on commit bae1fb2

Please sign in to comment.