Fixes Faulty Indentation in Brain Code (#14586)

This commit is contained in:
SleepyGemmy
2022-08-10 18:45:13 -03:00
committed by GitHub
parent ab4810734a
commit 06227e9256
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -177,7 +177,7 @@
if(is_broken())
if(!owner.lying && prob(5))
to_chat(owner, "<span class='danger'>You black out!</span>")
owner.Paralyse(10)
owner.Paralyse(10)
/obj/item/organ/internal/brain/surgical_fix(mob/user)
var/blood_volume = owner.get_blood_oxygenation()
+6
View File
@@ -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."