diff options
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 |