mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-25 05:51:56 +01:00
[MDB Ignore] [IDB Ignore] Kills off /obj/item/device (#21774)
This has zero reason to exist in our code base. We have no procs or variables tied to this. I removed it to make future modifications cleaner. --------- Signed-off-by: Cody Brittain <1779662+Generalcamo@users.noreply.github.com>
This commit is contained in:
@@ -12,7 +12,7 @@ GLOBAL_VAR_INIT(ntnet_card_uid, 1)
|
||||
var/identification_string = "" // Identification string, technically nickname seen in the network. Can be set by user.
|
||||
var/long_range = FALSE
|
||||
var/ethernet = FALSE // Hard-wired, therefore always on, ignores NTNet wireless checks.
|
||||
var/obj/item/radio/integrated/signal/sradio = FALSE // integrated signaler - not present on basic model.
|
||||
var/obj/item/integrated_signaler/signal/sradio = FALSE // integrated signaler - not present on basic model.
|
||||
malfunction_probability = 1
|
||||
|
||||
/obj/item/computer_hardware/network_card/diagnostics(mob/user)
|
||||
@@ -41,7 +41,7 @@ GLOBAL_VAR_INIT(ntnet_card_uid, 1)
|
||||
|
||||
/obj/item/computer_hardware/network_card/signaler/Initialize()
|
||||
. = ..()
|
||||
sradio = new /obj/item/radio/integrated/signal(src)
|
||||
sradio = new /obj/item/integrated_signaler/signal(src)
|
||||
|
||||
/obj/item/computer_hardware/network_card/advanced
|
||||
name = "advanced NTNet network card"
|
||||
@@ -54,7 +54,7 @@ GLOBAL_VAR_INIT(ntnet_card_uid, 1)
|
||||
|
||||
/obj/item/computer_hardware/network_card/advanced/Initialize()
|
||||
. = ..()
|
||||
sradio = new /obj/item/radio/integrated/signal(src)
|
||||
sradio = new /obj/item/integrated_signaler/signal(src)
|
||||
|
||||
/obj/item/computer_hardware/network_card/wired
|
||||
name = "wired NTNet network card"
|
||||
@@ -67,7 +67,7 @@ GLOBAL_VAR_INIT(ntnet_card_uid, 1)
|
||||
|
||||
/obj/item/computer_hardware/network_card/wired/Initialize()
|
||||
. = ..()
|
||||
sradio = new /obj/item/radio/integrated/signal(src)
|
||||
sradio = new /obj/item/integrated_signaler/signal(src)
|
||||
|
||||
// Returns a string identifier of this network card
|
||||
/obj/item/computer_hardware/network_card/proc/get_network_tag()
|
||||
|
||||
Reference in New Issue
Block a user