Batch of random bug fixes (#15067)

This commit is contained in:
Mykhailo Bykhovtsev
2022-11-10 15:41:17 -08:00
committed by GitHub
parent 3914e831eb
commit 4c0ef93dc5
6 changed files with 57 additions and 8 deletions
@@ -229,7 +229,7 @@
/obj/item/photo
)
/obj/item/gripper/research //A general usage gripper, used for toxins/robotics/xenobio/etc
/obj/item/gripper/research // A general usage gripper, used for toxins/robotics/xenobio/etc
name = "scientific gripper"
icon_state = "gripper-sci"
desc = "A simple grasping tool suited to assist in a wide array of research applications."
@@ -243,18 +243,20 @@
/obj/item/mecha_equipment,
/obj/item/device/radio/exosuit,
/obj/item/borg/upgrade,
/obj/item/device/flash, //to build borgs,
/obj/item/organ/internal/brain, //to insert into MMIs,
/obj/item/stack/cable_coil, //again, for borg building,
/obj/item/device/flash, // to build borgs,
/obj/item/organ/internal/brain, // to insert into MMIs,
/obj/item/stack/cable_coil, // again, for borg building,
/obj/item/circuitboard,
/obj/item/slime_extract,
/obj/item/reagent_containers/glass,
/obj/item/reagent_containers/food/snacks/monkeycube,
/obj/item/device/assembly,//For building bots and similar complex R&D devices
/obj/item/device/healthanalyzer,//For building medibots
/obj/item/seeds, // To be able to plant things for Xenobotany
/obj/item/grown, // To be able to plant things for Xenobotany
/obj/item/device/assembly, // For building bots and similar complex R&D devices
/obj/item/device/healthanalyzer,// For building medibots
/obj/item/disk,
/obj/item/device/analyzer/plant_analyzer,//For farmbot construction
/obj/item/material/minihoe,//Farmbots and xenoflora
/obj/item/material/minihoe, // Farmbots and xenoflora
/obj/item/computer_hardware,
/obj/item/slimesteroid,
/obj/item/extract_enhancer,
@@ -788,6 +788,7 @@ var/global/list/robot_modules = list(
. = ..()
modules += new /obj/item/portable_destructive_analyzer(src)
modules += new /obj/item/gripper/research(src)
modules += new /obj/item/robot_harvester(src)
modules += new /obj/item/gripper/no_use/loader(src)
modules += new /obj/item/device/robotanalyzer(src)
modules += new /obj/item/card/robot(src)
@@ -1042,6 +1043,7 @@ var/global/list/robot_modules = list(
/obj/item/robot_module/mining_drone
name = "mining drone module"
no_slip = TRUE
channels = list(CHANNEL_SUPPLY = TRUE)
networks = list(NETWORK_MINE)
/obj/item/robot_module/mining_drone/Initialize(mapload, mob/living/silicon/robot/R)