Increased zoom on find

This commit is contained in:
Cooldude2606
2019-06-01 00:36:19 +01:00
parent 7f66539e5d
commit ef683773fe
2 changed files with 2 additions and 2 deletions

View File

@@ -6,6 +6,6 @@ Commands.new_command('find-on-map','Find a player on your map.')
:add_alias('find','zoom-to')
:register(function(player,action_player,raw)
local position = action_player.position
player.zoom_to_world(position,2)
player.zoom_to_world(position,1.75)
return Commands.success -- prevents command complete message from showing
end)