[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:
Cody Brittain
2026-02-01 00:14:26 -05:00
committed by GitHub
parent 75424095ac
commit 3f62424312
857 changed files with 8690 additions and 8599 deletions
+2 -2
View File
@@ -52,7 +52,7 @@
allowed_tools = list(
TOOL_HEMOSTAT = 100, \
TOOL_CABLECOIL = 75, \
/obj/item/device/assembly/mousetrap = 10 //I don't know. Don't ask me. But I'm leaving it because hilarity.
/obj/item/assembly/mousetrap = 10 //I don't know. Don't ask me. But I'm leaving it because hilarity.
)
min_duration = 30
@@ -199,7 +199,7 @@
allowed_tools = list(
TOOL_MULTITOOL = 100, \
TOOL_CABLECOIL = 75, \
/obj/item/device/assembly/mousetrap = 10 //I don't know. Don't ask me. But I'm leaving it because hilarity.
/obj/item/assembly/mousetrap = 10 //I don't know. Don't ask me. But I'm leaving it because hilarity.
)
min_duration = 30
+1 -1
View File
@@ -200,7 +200,7 @@
allowed_tools = list(
TOOL_HEMOSTAT = 100, \
TOOL_CABLECOIL = 75, \
/obj/item/device/assembly/mousetrap = 20
/obj/item/assembly/mousetrap = 20
)
min_duration = 20
+1 -1
View File
@@ -54,7 +54,7 @@
allowed_tools = list(
TOOL_HEMOSTAT = 100, \
TOOL_CABLECOIL = 75, \
/obj/item/device/assembly/mousetrap = 20
/obj/item/assembly/mousetrap = 20
)
can_infect = TRUE
+3 -3
View File
@@ -376,7 +376,7 @@
/singleton/surgery_step/robotics/install_mmi
name = "Install MMI"
allowed_tools = list(
/obj/item/device/mmi = 100
/obj/item/mmi = 100
)
min_duration = 40
@@ -389,7 +389,7 @@
if(target_zone != BP_HEAD)
return FALSE
var/obj/item/device/mmi/M = tool
var/obj/item/mmi/M = tool
var/obj/item/organ/external/affected = target.get_organ(target_zone)
if(!(affected && affected.open == ORGAN_ENCASED_RETRACTED))
return FALSE
@@ -434,7 +434,7 @@
user.visible_message("<b>[user]</b> has installed \the [tool] into [target]'s [affected.name].", \
SPAN_NOTICE("You have installed \the [tool] into [target]'s [affected.name]."))
var/obj/item/device/mmi/M = tool
var/obj/item/mmi/M = tool
var/obj/item/organ/internal/machine/posibrain/holder = new(target, 1)
target.internal_organs_by_name[BP_BRAIN] = holder
user.drop_from_inventory(tool,holder)