Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com>
This commit is contained in:
Cameron Lennox
2025-07-16 18:57:18 -04:00
committed by GitHub
co-authored by Selis
parent e2a8a1bfaf
commit 8f1f83251b
+9 -10
View File
@@ -132,16 +132,15 @@
if(!(robotic >= ORGAN_ROBOT))
return
var/burn_damage = 0
for(var/i = 1; i <= robotic; i++)
switch (severity)
if (1)
burn_damage += rand(5, 8)
if (2)
burn_damage += rand(4, 6)
if(3)
burn_damage += rand(2, 5)
if(4)
burn_damage += rand(1, 3)
switch (severity)
if (1)
burn_damage += rand(5, 8)
if (2)
burn_damage += rand(4, 6)
if(3)
burn_damage += rand(2, 5)
if(4)
burn_damage += rand(1, 3)
if(burn_damage)
take_damage(0, burn_damage)