Skip to content

Commit

Permalink
Revert "kat's changes"
Browse files Browse the repository at this point in the history
This reverts commit 3447838.
  • Loading branch information
MarkSuckerberg committed Mar 13, 2024
1 parent 436ba24 commit 4a68117
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion code/modules/shuttle/on_move.dm
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ All ShuttleMove procs go here
if(!(move_mode & MOVE_AREA) || !isshuttleturf(src))
return move_mode

clear_adjacencies()

return move_mode | MOVE_TURF | MOVE_CONTENTS

// Called from the new turf before anything has been moved
Expand All @@ -20,6 +22,8 @@ All ShuttleMove procs go here
if(!(. & MOVE_TURF))
return

clear_adjacencies()

for(var/atom/movable/thing as anything in contents)
if(ismob(thing))
if(isliving(thing))
Expand Down Expand Up @@ -109,7 +113,7 @@ All ShuttleMove procs go here
CRASH("A turf queued to clean up after a shuttle dock somehow didn't have enough skipovers in baseturfs. [oldT]([oldT.type]):[oldT.loc]")

if(BT_index != length(baseturfs))
oldT.ScrapeAway(baseturfs.len - BT_index, CHANGETURF_FORCEOP|CHANGETURF_DEFER_CHANGE)
oldT.ScrapeAway(baseturfs.len - BT_index, CHANGETURF_FORCEOP)

return TRUE

Expand Down

0 comments on commit 4a68117

Please sign in to comment.