summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--depends.txt1
-rw-r--r--helptexts.lua15
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