From 9e053da327bb79424ad8d97c1304532b323bd1a1 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Sun, 27 Dec 2015 12:25:47 -0600 Subject: [PATCH 1/2] Fixes greytide --- code/modules/mob/living/simple_animal/hostile/illusion.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/illusion.dm b/code/modules/mob/living/simple_animal/hostile/illusion.dm index 257967c8712..5002ce0938c 100644 --- a/code/modules/mob/living/simple_animal/hostile/illusion.dm +++ b/code/modules/mob/living/simple_animal/hostile/illusion.dm @@ -58,7 +58,7 @@ return var/mob/living/simple_animal/hostile/illusion/M = new(loc) M.faction = faction.Copy() - M.Copy_Parent(parent_mob, life_span, health/2, melee_damage_upper, multiply_chance) + M.Copy_Parent(parent_mob, 80, health/2, melee_damage_upper, multiply_chance) M.GiveTarget(L) ///////Actual Types///////// From 2b129fb2ea978a693bb50871eae3090e796e1c3d Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Thu, 31 Dec 2015 18:55:31 -0600 Subject: [PATCH 2/2] Multiply chance down --- code/modules/mob/living/simple_animal/hostile/illusion.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/illusion.dm b/code/modules/mob/living/simple_animal/hostile/illusion.dm index 5002ce0938c..c0474b51e44 100644 --- a/code/modules/mob/living/simple_animal/hostile/illusion.dm +++ b/code/modules/mob/living/simple_animal/hostile/illusion.dm @@ -58,7 +58,7 @@ return var/mob/living/simple_animal/hostile/illusion/M = new(loc) M.faction = faction.Copy() - M.Copy_Parent(parent_mob, 80, health/2, melee_damage_upper, multiply_chance) + M.Copy_Parent(parent_mob, 80, health/2, melee_damage_upper, multiply_chance/2) M.GiveTarget(L) ///////Actual Types/////////