Skip to content

Commit 3b0f765

Browse files
Ruiest31
Rui
authored andcommittedAug 30, 2016
Document keymap_autorun in settingtypes.txt and minetest.conf.example (#4486)
1 parent 1f2ff86 commit 3b0f765

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed
 

Diff for: ‎builtin/settingtypes.txt

+4
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,10 @@ keymap_fastmove (Fast key) key KEY_KEY_J
176176
# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
177177
keymap_noclip (Noclip key) key KEY_KEY_H
178178

179+
# Key for toggling autorun.
180+
# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
181+
keymap_autorun (Autorun key) key
182+
179183
# Key for toggling cinematic mode.
180184
# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
181185
keymap_cinematic (Cinematic mode key) key

Diff for: ‎minetest.conf.example

+5
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,11 @@
173173
# type: key
174174
# keymap_noclip = KEY_KEY_H
175175

176+
# Key for toggling autorun.
177+
# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
178+
# type: key
179+
# keymap_autorun =
180+
176181
# Key for toggling cinematic mode.
177182
# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
178183
# type: key

Diff for: ‎src/settings_translation_file.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ fake_function() {
7171
gettext("Key for toggling fast mode.\nSee http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3");
7272
gettext("Noclip key");
7373
gettext("Key for toggling noclip mode.\nSee http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3");
74+
gettext("Autorun key");
75+
gettext("Key for toggling autorun.\nSee http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3");
7476
gettext("Cinematic mode key");
7577
gettext("Key for toggling cinematic mode.\nSee http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3");
7678
gettext("Minimap key");

0 commit comments

Comments
 (0)
Please sign in to comment.