mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 00:25:19 +02:00
Fix executing register_chatcommand-defined commands even in the middle of a chat line
This commit is contained in:
@@ -14,7 +14,7 @@ function minetest.register_chatcommand(cmd, def)
|
|||||||
end
|
end
|
||||||
|
|
||||||
minetest.register_on_chat_message(function(name, message)
|
minetest.register_on_chat_message(function(name, message)
|
||||||
local cmd, param = string.match(message, "/([^ ]+) *(.*)")
|
local cmd, param = string.match(message, "^/([^ ]+) *(.*)")
|
||||||
if not param then
|
if not param then
|
||||||
param = ""
|
param = ""
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user