From 06227e9256777de97ff1277454b6a03ccc0febf8 Mon Sep 17 00:00:00 2001 From: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> Date: Wed, 10 Aug 2022 23:45:13 +0200 Subject: [PATCH] Fixes Faulty Indentation in Brain Code (#14586) --- code/modules/organs/internal/brain.dm | 2 +- html/changelogs/brain_indentation.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/brain_indentation.yml diff --git a/code/modules/organs/internal/brain.dm b/code/modules/organs/internal/brain.dm index b9501b3dbb6..70ff42f3c84 100644 --- a/code/modules/organs/internal/brain.dm +++ b/code/modules/organs/internal/brain.dm @@ -177,7 +177,7 @@ if(is_broken()) if(!owner.lying && prob(5)) to_chat(owner, "You black out!") - owner.Paralyse(10) + owner.Paralyse(10) /obj/item/organ/internal/brain/surgical_fix(mob/user) var/blood_volume = owner.get_blood_oxygenation() diff --git a/html/changelogs/brain_indentation.yml b/html/changelogs/brain_indentation.yml new file mode 100644 index 00000000000..22bbf03dc50 --- /dev/null +++ b/html/changelogs/brain_indentation.yml @@ -0,0 +1,6 @@ +author: SleepyGemmy + +delete-after: True + +changes: + - bugfix: "Fixes faulty indentation in the brain code, causing paralysis to proc every time instead of 5% of the time." \ No newline at end of file