From 34cf4c30a94e1b01d9d50c5ec5988117ae78dde0 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Thu, 4 Apr 2019 23:37:14 +0200 Subject: [PATCH 1/2] Frostbite efficiency update Removing frostbites ability to self cold nuke to make the thermal regulation more efficient --- code/game/objects/items/devices/suit_cooling.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/suit_cooling.dm b/code/game/objects/items/devices/suit_cooling.dm index efe233a759..fdd27f541d 100644 --- a/code/game/objects/items/devices/suit_cooling.dm +++ b/code/game/objects/items/devices/suit_cooling.dm @@ -280,7 +280,7 @@ var/datum/gas_mixture/environment = src.loc.return_air() if(icon_state != icon_dead && isCooling) handle_cooling(environment) - src.bodytemperature += cooling + //src.bodytemperature += cooling //Removing self nuke if(src.bodytemperature<=-500) isCooling = 0 if(src.bodytemperature>=-499) From c05286677a273bec03a6ac8876c9412051506697 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Thu, 4 Apr 2019 23:38:30 +0200 Subject: [PATCH 2/2] Update suit_cooling.dm --- code/game/objects/items/devices/suit_cooling.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/devices/suit_cooling.dm b/code/game/objects/items/devices/suit_cooling.dm index fdd27f541d..b89928445a 100644 --- a/code/game/objects/items/devices/suit_cooling.dm +++ b/code/game/objects/items/devices/suit_cooling.dm @@ -260,10 +260,10 @@ retaliate=1 name = "Frostbite Jelly" //might make a blue icon someday, not priority this is debug stuff - var/cooling = -500 //variable cooling + var/cooling = -5000 //variable cooling var/isCooling = 1 cold_damage_per_tick = 0 - maxbodytemp = 2000 + maxbodytemp = 20000000 /mob/living/simple_animal/hostile/jelly/cold/proc/toggle_cooling() isCooling=!isCooling