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

@@ -9,7 +9,7 @@ function log_player_positions()
and e.position.z > center.z - radius
and e.position.z < center.z + radius
end)
for _, e in entities do
for _, e in ipairs(entities) do
client:chat(string.format("%s (%s) at %.1f %.1f %.1f", e.kind, e.id, e.position.x, e.position.y, e.position.z))
end
end