From 235879208b5e4208a84f0d5be91b97261869dc02 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Mon, 23 May 2016 23:00:48 -0400 Subject: [PATCH 1/2] Increases dogborg digestion time by 30% give or take Fixes #210 --- code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm index 1640ca8f5b..575fe09fe6 100644 --- a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm +++ b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm @@ -323,7 +323,7 @@ for(var/mob/inhearer in contents) inhearer << sound(churnsound) //If the timing is right, and there are items to be touched - if(air_master.current_cycle%2==1 && length(touchable_items)) + if(air_master.current_cycle%3==1 && length(touchable_items)) //Burn all the mobs or add them to the exclusion list for(var/mob/living/carbon/human/T in (touchable_items)) From 4b582f55ef77c0c261fe68c0bae3a982a956894c Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Mon, 23 May 2016 23:04:40 -0400 Subject: [PATCH 2/2] Gave cyborgs a little more power Not a ton, but some. They're still super-powerful so. Fixes #209 --- code/modules/mob/living/silicon/robot/robot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index ad3445483d..ac970d2d3b 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -1,4 +1,4 @@ -#define CYBORG_POWER_USAGE_MULTIPLIER 2.5 // Multiplier for amount of power cyborgs use. +#define CYBORG_POWER_USAGE_MULTIPLIER 2 // Multiplier for amount of power cyborgs use. /mob/living/silicon/robot name = "Cyborg"