diff options
author | Wuzzy <almikes@aol.com> | 2016-12-06 14:32:38 +0100 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-12-06 14:32:38 +0100 |
commit | 0789d321c71869e518d999f1517dea99449583ac (patch) | |
tree | 503076691f6e091a890ce435a87870018dc987da | |
parent | e99241d3f0f1ab80c5d422ff8df94fee825db137 (diff) |
Move gameplay stuff back to basics
-rw-r--r-- | init.lua | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -11,7 +11,6 @@ - Sneak Glitch? - Rendering (far view, etc.) - Day/night cycle - - Maybe move liquids and groups to advanced ]] @@ -20,7 +19,7 @@ doc.new_category("basics", name="Basics", description = "Everything you need to know about Minetest to get started with playing", sorting = "custom", - sorting_data = {"minetest", "controls", "sneak", "point", "items", "inventory", "hotbar", "tools", "weapons", "blocks", "liquids", "mine", "build", "craft", "cook", "groups", "players", "minimap", "cam", "glossary"}, + sorting_data = {"minetest", "controls", "players", "point", "items", "inventory", "hotbar", "tools", "weapons", "blocks", "liquids", "mine", "build", "craft", "cook", "players", "minimap", "sneak", "light", "groups", "cam", "glossary"}, build_formspec = doc.entry_builders.text_and_gallery, }) @@ -29,7 +28,7 @@ doc.new_category("advanced", name = "Advanced usage", description = "Advanced information about Minetest which may be nice to know, but is not crucial to gameplay", sorting = "custom", - sorting_data = {"light", "console", "commands", "privs", "movement_modes", "settings", "online"}, + sorting_data = {"console", "commands", "privs", "movement_modes", "settings", "online"}, build_formspec = doc.entry_builders.text_and_gallery, }) @@ -690,7 +689,7 @@ Players with the “privs” privilege can modify privileges at will: In single-player mode, you can use “/grant singleplayer all” to unlock all abilities (which is considered cheating).]=] }}) -doc.new_entry("advanced", "light", { +doc.new_entry("basics", "light", { name = "Light", data = { text = [=[As the world is entirely block-based, so is the light in the world. Each block has its own brightness. The brightness of a block is expressed in a “light level” which ranges from 0 (total darkness) to 15 (as bright as the sun). |