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 | |
parent | d8d2f9c7a4559583c28f8cf888ecc9eb415f2d7e (diff) |
Add Creative Mode entry
-rw-r--r-- | depends.txt | 1 | ||||
-rw-r--r-- | helptexts.lua | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/depends.txt b/depends.txt index fc3de77..3381a59 100644 --- a/depends.txt +++ b/depends.txt @@ -16,6 +16,7 @@ walls wool xpanes doc_items +doc_basics? doc_identifier? doc_encyclopedia? intllib? 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 |