1/3
1 Year of Service
Replacing the default right click functionality is a bit of a dick move on the dev's part.
If anyone wants to restore it, you can do so by editing game/custom_screens.rpy.
Line 2 and 41 both say
Replace those with something like
to rebind the dev's menu. In this case to the "m" key.
Or download the prepatched file for version 0.17 from the attachment to this post, and override the file in the "game" folder.
If anyone wants to restore it, you can do so by editing game/custom_screens.rpy.
Line 2 and 41 both say
Python:
key "mouseup_3" action [Show("allbuttons2"), Show("keymapscreen"), ToggleScreen("moneyUI"), Hide("allbuttons")]
Python:
key "K_m" action [Show("allbuttons"), Hide("keymapscreen"), ToggleScreen("moneyUI"), Hide("allbuttons2")]
Or download the prepatched file for version 0.17 from the attachment to this post, and override the file in the "game" folder.