mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-27 14:07:51 +01:00
Fixes collision on double airlocks (#32047)
This commit is contained in:
@@ -647,12 +647,12 @@
|
||||
|
||||
QDEL_LIST_CONTENTS(fillers)
|
||||
|
||||
if(dir in list(SOUTH, NORTH))
|
||||
if(dir in list(EAST, WEST))
|
||||
bound_width = width * world.icon_size
|
||||
bound_height = world.icon_size
|
||||
bound_y = 0
|
||||
pixel_y = 0
|
||||
if(dir == NORTH)
|
||||
if(dir == WEST)
|
||||
bound_x = -(width - 1) * world.icon_size
|
||||
pixel_x = -(width - 1) * world.icon_size
|
||||
else
|
||||
@@ -664,7 +664,7 @@
|
||||
bound_height = width * world.icon_size
|
||||
bound_x = 0
|
||||
pixel_x = 0
|
||||
if(dir == WEST)
|
||||
if(dir == NORTH)
|
||||
bound_y = -(width - 1) * world.icon_size
|
||||
pixel_y = -(width - 1) * world.icon_size
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user