mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-01 17:38:41 +00:00
[CSM] Add client-sided chat commands (#5092)
This commit is contained in:
parent
9978f5af82
commit
d7bc346981
9 changed files with 100 additions and 33 deletions
|
@ -22,3 +22,10 @@ end)
|
|||
core.register_on_damage_taken(function(hp)
|
||||
print("[PREVIEW] Damage taken " .. hp)
|
||||
end)
|
||||
|
||||
-- This is an example function to ensure it's working properly, should be removed before merge
|
||||
core.register_chatcommand("dump", {
|
||||
func = function(name, param)
|
||||
return true, dump(_G)
|
||||
end,
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue