From 88b7db2beff11c8cf7184dff6249649ba73a3949 Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Sun, 20 Jul 2025 05:58:24 -0700 Subject: [PATCH] [MIRROR] Makes robotic limbs all equally weak (#11206) Co-authored-by: Cameron Lennox Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com> --- code/modules/organs/organ_external.dm | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index 4e28b0b544..ae5b7ddf92 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -132,16 +132,15 @@ if(!(robotic >= ORGAN_ROBOT) || robotic == ORGAN_NANOFORM) //CHOMPEdit - Proteans handle EMP's differently 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)