refactor!: replace setters with fields

This commit is contained in:
2026-04-19 14:15:17 -04:00
parent 6cb5a4e73f
commit 3ce06e1731
8 changed files with 44 additions and 29 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ function look_at_player(name)
local player = get_player(name)
if player then
player.position.y = player.position.y + 1
client:look_at(player.position)
client.looking_at = player.position
end
end