Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 6481b31

Browse files
You can no longer RCD space transit tiles if it's not part of a shuttle (#22596)
* no more * Update code/game/turfs/open/space/transit.dm Co-authored-by: SapphicOverload <[email protected]> --------- Co-authored-by: SapphicOverload <[email protected]>
1 parent c25b58c commit 6481b31

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

code/game/turfs/open/space/transit.dm

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,12 @@
8383
/turf/open/space/transit/CanBuildHere()
8484
return SSshuttle.is_in_shuttle_bounds(src)
8585

86+
/turf/open/space/transit/rcd_vals(mob/user, obj/item/construction/rcd/the_rcd)
87+
if(!CanBuildHere()) //no RCDing transit space if we arent part of a shuttle
88+
return FALSE
89+
return ..()
90+
91+
8692
/turf/open/space/transit/south
8793
dir = SOUTH
8894

0 commit comments

Comments
 (0)