diff --git a/code/game/machinery/computer/teleporter.dm b/code/game/machinery/computer/teleporter.dm index 63af21ffb7..56a583fff6 100644 --- a/code/game/machinery/computer/teleporter.dm +++ b/code/game/machinery/computer/teleporter.dm @@ -189,18 +189,9 @@ to_chat(user, "No connected stations located.") return for(var/obj/machinery/teleport/station/R in S) -<<<<<<< HEAD - var/turf/T = get_turf(R) - if(!T || !R.teleporter_hub || !R.teleporter_console) - continue - if(T.z == ZLEVEL_CENTCOM || T.z > ZLEVEL_SPACEMAX) - continue - L[avoid_assoc_duplicate_keys(T.loc.name, areaindex)] = R -======= if(is_eligible(R)) var/area/A = get_area(R) L[avoid_assoc_duplicate_keys(A.name, areaindex)] = R ->>>>>>> 646672e... Merge pull request #33917 from AutomaticFrenzy/patch/beacon-name var/desc = input("Please select a station to lock in.", "Locking Computer") as null|anything in L target = L[desc] if(target)