summaryrefslogtreecommitdiff
path: root/game
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-11-02 19:02:06 -0300
committerJesusaves <cpntb1@ymail.com>2022-11-02 19:02:06 -0300
commit4480a41449c1616edc77d2481ebe9aef96530b33 (patch)
tree869b1091a49f774e699f0b80565bb7d470f2df80 /game
parentcd996a86121ec5ad6c4b2c2c5ec1ded4eec652e8 (diff)
downloadrenpy-4480a41449c1616edc77d2481ebe9aef96530b33.tar.gz
renpy-4480a41449c1616edc77d2481ebe9aef96530b33.tar.bz2
renpy-4480a41449c1616edc77d2481ebe9aef96530b33.tar.xz
renpy-4480a41449c1616edc77d2481ebe9aef96530b33.zip
Update keymap as Matt requested.
Diffstat (limited to 'game')
-rw-r--r--game/3rdparty/manaverse.rpy2
-rw-r--r--game/core.rpy10
-rw-r--r--game/screens.rpy4
3 files changed, 13 insertions, 3 deletions
diff --git a/game/3rdparty/manaverse.rpy b/game/3rdparty/manaverse.rpy
index cceaf26..9c25389 100644
--- a/game/3rdparty/manaverse.rpy
+++ b/game/3rdparty/manaverse.rpy
@@ -87,7 +87,7 @@ init 1 python:
## Installer
if not MANAPLUS and download:
SCR_PROMPT=("Selected client \"%s\" is not installed.\nDo you wish to install it now?\n\n{size=14}By installing you agree with its {a=%s}Terms of Use and Conditions{/a}.%s{/size}" %
- ("ManaVerse", "https://gitlab.com/themanaworld/manaplus/manaplus/-/raw/master/COPYING",
+ ("ManaVerse", "https://git.themanaworld.org/mana/plus/-/raw/master/COPYING",
ifte(renpy.linux, "\n{i}libfuse2{/i} is required to run AppImages.", "")))
while SCR_RESULT is None:
time.sleep(0.02)
diff --git a/game/core.rpy b/game/core.rpy
index a6320c3..5f5c292 100644
--- a/game/core.rpy
+++ b/game/core.rpy
@@ -220,6 +220,16 @@ init 10 python:
persistent.last_run = now()
mp = MultiPersistent("vault.themanaworld.org", True)
+ ########
+ ## Fix keymap
+ config.keymap['screenshot'].remove('s')
+ config.keymap['screenshot'].append('K_F10')
+ config.keymap['screenshot'].append('K_F12')
+ config.keymap['toggle_skip'].remove('K_TAB')
+ config.keymap['fast_skip'].remove('>')
+ config.keymap['toggle_skip'].append('>')
+ config.keymap['focus_down'].append('K_TAB')
+
######### Done with pre-init
label splashscreen:
show TMW2 at truecenter with None #fade
diff --git a/game/screens.rpy b/game/screens.rpy
index 0a2f35c..d1e60a3 100644
--- a/game/screens.rpy
+++ b/game/screens.rpy
@@ -1009,7 +1009,7 @@ screen keyboard_help():
text _("Skips dialogue while held down.")
hbox:
- label _("Tab")
+ label _(">")
text _("Toggles dialogue skipping.")
hbox:
@@ -1017,7 +1017,7 @@ screen keyboard_help():
text _("Hides the user interface.")
hbox:
- label "S"
+ label "Shift+S"
text _("Takes a screenshot.")
hbox: