Skip to content

Commit

Permalink
Add store prefix to moni_idle_disp
Browse files Browse the repository at this point in the history
  • Loading branch information
NickWildish committed Nov 15, 2023
1 parent b87a0ab commit 4c23185
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions game/Submods/NSFW Submod/nsfw_window_reacts.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ label nsfw_wrs_r34:
else:
exp_to_force = "2tssdlc"

mas_moni_idle_disp.force_by_code(exp_to_force, duration=10)
store.mas_moni_idle_disp.force_by_code(exp_to_force, duration=10)
return

init 5 python:
Expand Down Expand Up @@ -87,7 +87,7 @@ label mas_nsfw_wrs_spnati:
)
exp_to_force = "1etblsdlc"
# force her sprite to do a specific expression
mas_moni_idle_disp.force_by_code(exp_to_force, duration=10)
store.mas_moni_idle_disp.force_by_code(exp_to_force, duration=10)
return

init 5 python:
Expand Down Expand Up @@ -121,6 +121,6 @@ label mas_nsfw_wrs_pornhub:

exp_to_force = "1gfbfsdlc"
# force her sprite to do a specific expression
mas_moni_idle_disp.force_by_code(exp_to_force, duration=10)
store.mas_moni_idle_disp.force_by_code(exp_to_force, duration=10)

return

0 comments on commit 4c23185

Please sign in to comment.