Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-02-18 | Say /setpassword is insecure | Vitra Suchovich | |
2022-05-29 | Don't allow banning in singleplayer | sfan5 | |
fixes #11819 | |||
2022-05-22 | Add relative numbers for commands by prepending ~ (#9588) | Wuzzy | |
* Add relative numbers for commands by prepending ~ * Some builtin code cleanup * Disallow nan and inf in minetest.string_to_area * Remove unused local variable teleportee (makes Luacheck happy) * Clean up core.string_to_pos * Make area parsing less permissive * Rewrite tests as busted tests * /time: Fix negative minutes not working Co-authored-by: Lars Mueller <appgurulars@gmx.de> | |||
2022-04-24 | Builtin: Allow to revoke unknown privileges | SmallJoker | |
2022-04-16 | Send chat error when attemping to /set a secure setting (#12193) | olive | |
Attempting to /set a secure setting will now say that is disallowed. Previously this would shut down the server. Reading secure settings via /set is still allowed. | |||
2022-04-01 | Avoid negation of comparison operator (luacheck warning) | Dmitry Kostenko | |
2022-01-30 | Raise max mapgen limit constant to align with mapblock size | sfan5 | |
2022-01-27 | Builtin: Sanity-check /time inputs (#11993) | SmallJoker | |
This enforces the documented bounds for the /time command. | |||
2021-06-30 | Run on_grant and on_revoke callbacks after privs change (#11387) | AFCMS | |
Callbacks were run too early. This changes the order to call after the privs are updated. | |||
2021-06-12 | Message for empty list output in /haspriv & /mods (#11149) | Wuzzy | |
2021-06-04 | Add metatables to lua vectors (#11039) | DS | |
Add backwards-compatible metatable functions for vectors. | |||
2021-05-29 | Fix misleading /shutdown command syntax | Wuzzy | |
2021-03-29 | Clean up various misleading and/or confusing messages and texts related to ↵ | Wuzzy | |
priv changes (#11126) | |||
2021-03-26 | Translate chatcommand delay message and replace minetest with core (#11113) | HybridDog | |
2021-03-13 | Chatcommands: Show the execution time if the command takes a long time (#10472) | HybridDog | |
2021-03-08 | Fix misleading chat messages of /clearobjects (#10690) | Wuzzy | |
2021-03-05 | Translate builtin (#10693) | Wuzzy | |
This PR is the second attempt to translate builtin. Server-sent translation files can be added to `builtin/locale/`, whereas client-side translations depend on gettext. | |||
2021-02-24 | Restructure teleport command code (#9706) | HybridDog | |
2020-10-03 | Lua API: Add register_on_chatcommand to SSM and CSM (#7862) | Elijah Duffy | |
Allows catching a chatcommand call just after the command and the parameters are parsed but before its existence is checked and before the corresponding function is run. Returning `true` from a callback function will prevent default handling of the command leaving mods to handle the command manually. | |||
2020-10-03 | Chatcommand: Show help message if func returns false without message | HybridDog | |
#9440 | |||
2020-08-06 | Change `last-login` command to show player name in output (#10263) | Emojigit | |
2020-05-23 | Add on_authplayer callback and 'last_login' to on_joinplayer (#9574) | sorcerykid | |
Replace on_auth_fail callback with more versatile on_authplayer Better clarify account login process in Lua API documentation Change initial timestamp for newly registered accounts to -1 | |||
2020-05-16 | Error msg if trying to teleport attached player (#9824) | Wuzzy | |
2020-05-13 | Document inf value in rollback commands (#9789) | Zughy | |
2020-04-27 | builtin: Correctly indicate failure in /spawnentity | sfan5 | |
2020-04-26 | Add new command /revokeme <priv> (#9584) | David Leal | |
2020-03-14 | Fix some chatcommands not returning a value (#9503) | Wuzzy | |
2019-12-20 | /privs: Delimit output list of privs with commas (#9224) | ANAND | |
2019-11-25 | Use a safer implementation of gsub in core.chat_format_message (#9133) | ANAND | |
This search-and-replace implementation does not use Lua pattern-matching | |||
2019-11-05 | Improve documentation around banning (#9088) | sfan5 | |
* Fix ban chatcommand description * Correct ban API documentation | |||
2019-11-02 | Builtin: Improve /clearobjects message (#9084) | Alistair Findlay | |
2019-09-29 | Allow grep-ing for on_grant and on_revoke (#8958) | DS | |
Just two code comments are added. | |||
2019-09-22 | Rename "private messages" to "direct messages" (#8971) | Hugo Locurcio | |
These messages can be read by server administrators, which makes them not actually private. | |||
2019-08-08 | Allow customizing chat message format (#8529) | ANAND | |