From 408835e58f4cfb2fc89869f594e366bd4544aae2 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 30 Jun 2021 21:00:29 +0200 Subject: [PATCH] [MIRROR] Massively buffs debriding surgery (#6610) * Massively buffs debriding surgery (#59865) Yesterday, I got lasered in the arm twice. A good three minutes later I lose all controle off my arm and have an assistant debride my arm. On a surgical table with sterilizine, this took 2 minutes and 30 seconds. All wounds can be fixed quite easily, but the infection wound type has always been an absolute nightmare. This was the only time I recorded it, but this has happened so many times and it feels like the average lies around 4~ minutes for this surgery to complete. It still depends on how badly infected your burn wound is, but it shouldn't take longer than 30 seconds now. * Massively buffs debriding surgery Co-authored-by: Time-Green --- code/modules/surgery/burn_dressing.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/burn_dressing.dm b/code/modules/surgery/burn_dressing.dm index 6c753e80f48..03099435092 100644 --- a/code/modules/surgery/burn_dressing.dm +++ b/code/modules/surgery/burn_dressing.dm @@ -35,7 +35,7 @@ /// How much sanitization is added per step var/sanitization_added = 0.5 /// How much infestation is removed per step (positive number) - var/infestation_removed = 0.5 + var/infestation_removed = 4 /// To give the surgeon a heads up how much work they have ahead of them /datum/surgery_step/debride/proc/get_progress(mob/user, mob/living/carbon/target, datum/wound/burn/burn_wound)