mirror of
https://github.com/minetest/minetest.git
synced 2025-07-06 18:00:21 +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