diff options
author | Wuzzy <almikes@aol.com> | 2016-12-08 12:37:33 +0100 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-12-08 12:37:33 +0100 |
commit | e2128f4b243e71f11741f94d31639ddbfde9b86c (patch) | |
tree | b9d2ac70bac37e958fa3ffb993bd59b1fb6748dc /helptexts.lua | |
parent | d8d2f9c7a4559583c28f8cf888ecc9eb415f2d7e (diff) |
Add Creative Mode entry
Diffstat (limited to 'helptexts.lua')
-rw-r--r-- | helptexts.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/helptexts.lua b/helptexts.lua index 7768e72..8577ee1 100644 --- a/helptexts.lua +++ b/helptexts.lua @@ -489,3 +489,18 @@ for itemstring, usagehelp in pairs(export_usagehelp) do minetest.override_item(itemstring, { _doc_items_usagehelp = usagehelp} ) end end + +if minetest.get_modpath("doc_basics") then + doc.new_entry("advanced", "creative", { + name = S("Creative Mode"), + data = { text = +S([=[Enabling Creative Mode in Minetest Game applies the following changes: + +• Hand breaks all default blocks +• Greatly reduced hand digging time +• Greatly increased hand damage +• Increased pointing range of hand +• Adds a creative inventory to obtain most items easily +• Tools don't wear off]=]) + }}) +end |