mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-18 03:21:13 +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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user