diff --git a/code/modules/overmap/ships/computers/ship.dm b/code/modules/overmap/ships/computers/ship.dm index 7bafeed4e6c..dd365ebce60 100644 --- a/code/modules/overmap/ships/computers/ship.dm +++ b/code/modules/overmap/ships/computers/ship.dm @@ -120,8 +120,9 @@ somewhere on that shuttle. Subtypes of these can be then used to perform ship ov . = ..() if(.) - connected = linked - LAZYSET(connected.consoles, src, TRUE) + if(istype(linked, /obj/effect/overmap/visitable/ship)) //Only ships get ship computers + connected = linked + LAZYSET(connected.consoles, src, TRUE) /obj/machinery/computer/ship/Initialize() . = ..()