mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-27 05:16:27 +01:00
runtime maploading: fifth time is the charm (#5524)
Co-authored-by: VM_USER <VM_USER> Co-authored-by: silicons <no@you.cat>
This commit is contained in:
co-authored by
VM_USER <VM_USER>
silicons
parent
c1ad8f4ce0
commit
fd5e67ff71
@@ -100,13 +100,13 @@ var/global/ntnet_card_uid = 1
|
||||
var/turf/T = get_turf(holder2)
|
||||
if(!istype(T)) //no reception in nullspace
|
||||
return 0
|
||||
if(T.z in GLOB.using_map.station_levels)
|
||||
if(T.z in (LEGACY_MAP_DATUM).station_levels)
|
||||
// Computer is on station. Low/High signal depending on what type of network card you have
|
||||
if(long_range)
|
||||
return 2
|
||||
else
|
||||
return 1
|
||||
if(T.z in GLOB.using_map.contact_levels) //not on station, but close enough for radio signal to travel
|
||||
if(T.z in (LEGACY_MAP_DATUM).contact_levels) //not on station, but close enough for radio signal to travel
|
||||
if(long_range) // Computer is not on station, but it has upgraded network card. Low signal.
|
||||
return 1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user