12 lines
318 B
Lua
12 lines
318 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
|
|
player:set_armor_groups({
|
|
fall_damage_add_percent = -100,
|
|
})
|
|
end)
|
|
end)
|