Removed Dogborgs

This removes all of the dogborg options from the game and the upgrades that are tied to them.

(Players can no longer turn into a dogborg)

Did someone call for an exterminator?
This commit is contained in:
simplysable
2022-04-24 22:35:37 -07:00
parent 755c193e8c
commit b5268a00c6
2 changed files with 28 additions and 26 deletions
@@ -415,9 +415,9 @@
icon_state = "cyborg_upgrade3"
require_module = 1
module_type = list(
/obj/item/robot_module/medical,
/obj/item/robot_module/medihound)
/obj/item/robot_module/medical) //had to move parantheses to close the list argument not inluding the medhihound here.
// /obj/item/robot_module/medihound //Removes the Medihound hypospray upgrade
var/list/additional_reagents = list()
/obj/item/borg/upgrade/hypospray/action(mob/living/silicon/robot/R, user = usr)
@@ -502,8 +502,8 @@
icon_state = "cyborg_upgrade3"
require_module = 1
module_type = list(
/obj/item/robot_module/medical,
/obj/item/robot_module/medihound)
/obj/item/robot_module/medical) //Had to close list parantheses here to not include medihound
///obj/item/robot_module/medihound //Removes Medihound surgical processor upgrade
/obj/item/borg/upgrade/processor/action(mob/living/silicon/robot/R, user = usr)
. = ..()
@@ -525,8 +525,8 @@
icon_state = "cyborg_upgrade3"
require_module = 1
module_type = list(
/obj/item/robot_module/medical,
/obj/item/robot_module/medihound)
/obj/item/robot_module/medical) //Closed list parantheses again to not include Medihound
///obj/item/robot_module/medihound
/obj/item/borg/upgrade/advhealth/action(mob/living/silicon/robot/R, user = usr)