Fix shuttle blueprint runtime spam (#91718)

## About The Pull Request

`shuttle_expand_check` asserts it must be passed a shuttle, but it
doesn't pass it a shuttle.
This commit is contained in:
MrMelbert
2025-06-20 10:59:27 -05:00
committed by Roxy
parent deb8fec4d4
commit c979f8388b
@@ -372,7 +372,7 @@
data["idle"] = linked_shuttle.mode == SHUTTLE_IDLE
if(on_shuttle_frame)
data["size"] = length(frame.turfs) - length(frame.shuttle_covered_turfs) + linked_shuttle.turf_count
data["problems"] = shuttle_expand_check(current_turf)
data["problems"] = shuttle_expand_check(current_turf, linked_shuttle)
return data
/obj/item/shuttle_blueprints/proc/link_to_shuttle(obj/docking_port/mobile/custom/shuttle, is_master = FALSE)