diff options
author | Ben Deutsch <ben@bendeutsch.de> | 2017-08-24 08:30:46 +0200 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-08-24 08:30:46 +0200 |
commit | 397a701f985f918cf8403802575045435de40c9a (patch) | |
tree | 042be04cd4d558e1563662b2bbbd3e37ac56189a /minetest.conf.example | |
parent | c7160cb629086df2a32c7dcf4faed4761ec4393e (diff) | |
download | minetest-397a701f985f918cf8403802575045435de40c9a.tar.gz minetest-397a701f985f918cf8403802575045435de40c9a.tar.bz2 minetest-397a701f985f918cf8403802575045435de40c9a.zip |
Safe digging and placing (#6127)
* Setting: Safe digging and placing
* New setting 'safe_dig_and_place' under Controls
* If set, digging and placing will not auto-repeat
* Releasing buttons unblocks the respective action again
* Useful for inexperienced users in creative mode where default
repeat times may be too short
* Safe placing (right click repetition) does not need a guarding flag
* Added new setting to minetest.conf.example
Diffstat (limited to 'minetest.conf.example')
-rw-r--r-- | minetest.conf.example | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/minetest.conf.example b/minetest.conf.example index 8ad579b43..6413d136a 100644 --- a/minetest.conf.example +++ b/minetest.conf.example @@ -75,6 +75,11 @@ # type: float # repeat_rightclick_time = 0.25 +# Prevent digging and placing from repeating when holding the mouse buttons. +# Enable this when you dig or place too often by accident. +# type: bool +# safe_dig_and_place = false + # Enable random user input (only used for testing). # type: bool # random_input = false |