diff options
author | SmallJoker <SmallJoker@users.noreply.github.com> | 2019-07-20 18:22:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-20 18:22:32 +0200 |
commit | 69bf964241666428e8d1663164a443654f51d53a (patch) | |
tree | a8f90fbba7011a5aebd41c8fe9c867a13d50ceab /builtin/game | |
parent | 9e005847302680dfc5c2fcadab81f5f1384db2d9 (diff) | |
download | minetest-69bf964241666428e8d1663164a443654f51d53a.tar.gz minetest-69bf964241666428e8d1663164a443654f51d53a.tar.bz2 minetest-69bf964241666428e8d1663164a443654f51d53a.zip |
Add /help formspec for commands and privileges (#8385)
* Trigger for 'all' as well
* Add description textarea, double-click to copy
Diffstat (limited to 'builtin/game')
-rw-r--r-- | builtin/game/init.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/game/init.lua b/builtin/game/init.lua index ab1503dee..04f0732e5 100644 --- a/builtin/game/init.lua +++ b/builtin/game/init.lua @@ -25,6 +25,7 @@ dofile(gamepath.."privileges.lua") dofile(gamepath.."auth.lua") dofile(commonpath .. "chatcommands.lua") dofile(gamepath.."chatcommands.lua") +dofile(commonpath .. "information_formspecs.lua") dofile(gamepath.."static_spawn.lua") dofile(gamepath.."detached_inventory.lua") assert(loadfile(gamepath.."falling.lua"))(builtin_shared) |