mirror of
https://github.com/APercy/ap_airship.git
synced 2025-03-15 07:51:20 +00:00
Update walk_map.lua
removed blimp references
This commit is contained in:
parent
048b6f7bf7
commit
8915d062f3
1 changed files with 5 additions and 5 deletions
10
walk_map.lua
10
walk_map.lua
|
@ -63,11 +63,11 @@ function ap_airship.passengers_deck_map(pos, dpos)
|
|||
end
|
||||
|
||||
function ap_airship.ladder_map(pos, dpos)
|
||||
local orig_pos = steampunk_blimp.copy_vector(pos)
|
||||
local position = steampunk_blimp.copy_vector(dpos)
|
||||
local new_pos = steampunk_blimp.copy_vector(dpos)
|
||||
new_pos.z = steampunk_blimp.clamp(new_pos.z, 112, 118)
|
||||
new_pos.x = steampunk_blimp.clamp(new_pos.x, -8.42, -2)
|
||||
local orig_pos = ap_airship.copy_vector(pos)
|
||||
local position = ap_airship.copy_vector(dpos)
|
||||
local new_pos = ap_airship.copy_vector(dpos)
|
||||
new_pos.z = ap_airship.clamp(new_pos.z, 112, 118)
|
||||
new_pos.x = ap_airship.clamp(new_pos.x, -8.42, -2)
|
||||
|
||||
return new_pos
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue