Fixes collision on double airlocks (#32047)

This commit is contained in:
PollardTheDragon
2026-05-21 19:28:13 +00:00
committed by GitHub
parent e1728080f2
commit a36183f361
+3 -3
View File
@@ -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