From f22661f2b93883601db68948762199559950dbe0 Mon Sep 17 00:00:00 2001 From: Joan Lung <3886584+ChangelingRain@users.noreply.github.com> Date: Fri, 8 Sep 2017 16:18:04 -0400 Subject: [PATCH 1/2] Removes a src. and causes a runtime --- code/game/gamemodes/blob/theblob.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/blob/theblob.dm b/code/game/gamemodes/blob/theblob.dm index 7652ab81a27..8c8940eedfe 100644 --- a/code/game/gamemodes/blob/theblob.dm +++ b/code/game/gamemodes/blob/theblob.dm @@ -91,7 +91,7 @@ return /obj/structure/blob/proc/Pulse_Area(pulsing_overmind = overmind, claim_range = 10, pulse_range = 3, expand_range = 2) - src.Be_Pulsed() + Be_Pulsed() var/expanded = FALSE if(prob(70) && expand()) expanded = TRUE From 252dc769a63ca6799ab3b1b5608186905bc0a415 Mon Sep 17 00:00:00 2001 From: Joan Lung <3886584+ChangelingRain@users.noreply.github.com> Date: Fri, 8 Sep 2017 23:15:17 -0400 Subject: [PATCH 2/2] headshot! --- code/game/gamemodes/blob/theblob.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/blob/theblob.dm b/code/game/gamemodes/blob/theblob.dm index 8c8940eedfe..6ad12a76fc4 100644 --- a/code/game/gamemodes/blob/theblob.dm +++ b/code/game/gamemodes/blob/theblob.dm @@ -90,7 +90,9 @@ /obj/structure/blob/proc/Life() return -/obj/structure/blob/proc/Pulse_Area(pulsing_overmind = overmind, claim_range = 10, pulse_range = 3, expand_range = 2) +/obj/structure/blob/proc/Pulse_Area(mob/camera/blob/pulsing_overmind, claim_range = 10, pulse_range = 3, expand_range = 2) + if(QDELETED(pulsing_overmind)) + pulsing_overmind = overmind Be_Pulsed() var/expanded = FALSE if(prob(70) && expand())