568e8059f9
create more wrappers for built-in functions and use them instead.
9 lines
250 B
Lua
9 lines
250 B
Lua
local utils = load_file("util_misc")
|
|
|
|
blockgame.register_on_joinplayer(function(player)
|
|
utils.handle_player(player, function (_, data)
|
|
data.properties.pointable = false
|
|
data.properties.zoom_fov = 15
|
|
data.properties.eye_height = 1.7
|
|
end)
|
|
end)
|