2023-10-13 06:59:51 +00:00
|
|
|
local utils = load_file("util_misc")
|
|
|
|
|
2023-10-13 07:31:55 +00:00
|
|
|
blockgame.register_on_joinplayer(function(player)
|
2023-10-13 06:59:51 +00:00
|
|
|
utils.handle_player(player, function (_, data)
|
|
|
|
data.properties.pointable = false
|
|
|
|
data.properties.zoom_fov = 15
|
|
|
|
data.properties.eye_height = 1.7
|
2023-10-22 19:27:48 +00:00
|
|
|
player:set_armor_groups({
|
|
|
|
fall_damage_add_percent = -100,
|
|
|
|
})
|
2023-10-13 06:59:51 +00:00
|
|
|
end)
|
|
|
|
end)
|