aboutsummaryrefslogtreecommitdiff
path: root/assets/blender/mbb/jpn_wagon_anim_uv.png
diff options
context:
space:
mode:
Diffstat (limited to 'assets/blender/mbb/jpn_wagon_anim_uv.png')
0 files changed, 0 insertions, 0 deletions
n class="hl kwd">register_on_sending_chat_message(function(message) if message:sub(1,2) == ".." then return false end local first_char = message:sub(1,1) if first_char == "/" or first_char == "." then core.display_chat_message(core.gettext("issued command: ") .. message) end if first_char ~= "." then return false end local cmd, param = string.match(message, "^%.([^ ]+) *(.*)") param = param or "" if not cmd then core.display_chat_message(core.gettext("-!- Empty command")) return true end -- Run core.registered_on_chatcommand callbacks. if core.run_callbacks(core.registered_on_chatcommand, 5, cmd, param) then return true