From 34be47e19a8685883ec680bb5b3214b1ccc3d58c Mon Sep 17 00:00:00 2001 From: ppi13 Date: Wed, 18 Oct 2023 18:34:27 +0200 Subject: [PATCH] RND-server-is-no-longer-heatproof-after-a-certain-bit (#22839) --- code/modules/research/server.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/research/server.dm b/code/modules/research/server.dm index 76e043200192..0f813c354311 100644 --- a/code/modules/research/server.dm +++ b/code/modules/research/server.dm @@ -80,7 +80,7 @@ health = min(100, health + 1) if(T0C to (T20C + 20)) health = clamp(health, 0, 100) - if((T20C + 20) to (T0C + 70)) + if((T20C + 20) to INFINITY) health = max(0, health - 1) if(health <= 0) /*griefProtection() This seems to get called twice before running any code that deletes/damages the server or it's files anwyay.