feat: switch to luajit for more features

This commit is contained in:
2025-02-23 02:49:35 -05:00
parent b1dbfa6110
commit 168ac1bb46
10 changed files with 48 additions and 65 deletions

View File

@@ -8,10 +8,10 @@ function look_at_player(name)
end
end
function goto_player(name, opts)
function go_to_player(name, opts)
local player = get_player(name)
if player then
client:goto(player.position, opts)
client:go_to(player.position, opts)
else
client:chat(string.format("/w %s player not found!", sender))
end