From 43cbaf1f6a758a7023e2e4bc979608b76e079613 Mon Sep 17 00:00:00 2001 From: Kyep Date: Sat, 26 Jan 2019 19:13:37 -0800 Subject: [PATCH] Fixes shapeshift spell definitions Prior to this PR, there were '/list' subtypes of many shapeshift spells, because some of their vars were set incorrectly. This PR sets the vars correctly, removing the erroneous spell subtypes in the process. --- code/datums/spells/shapeshift.dm | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/code/datums/spells/shapeshift.dm b/code/datums/spells/shapeshift.dm index 5dd388779ce..e3ee9e2e182 100644 --- a/code/datums/spells/shapeshift.dm +++ b/code/datums/spells/shapeshift.dm @@ -77,9 +77,9 @@ invocation = "RAAAAAAAAWR!" shapeshift_type = /mob/living/simple_animal/hostile/megafauna/dragon/lesser - list/current_shapes = list(/mob/living/simple_animal/hostile/megafauna/dragon/lesser) - list/current_casters = list() - list/possible_shapes = list(/mob/living/simple_animal/hostile/megafauna/dragon/lesser) + current_shapes = list(/mob/living/simple_animal/hostile/megafauna/dragon/lesser) + current_casters = list() + possible_shapes = list(/mob/living/simple_animal/hostile/megafauna/dragon/lesser) /obj/effect/proc_holder/spell/targeted/shapeshift/bats name = "Bat Form" @@ -89,9 +89,9 @@ action_icon_state = "vampire_bats" shapeshift_type = /mob/living/simple_animal/hostile/scarybat/batswarm - list/current_shapes = list(/mob/living/simple_animal/hostile/scarybat/batswarm) - list/current_casters = list() - list/possible_shapes = list(/mob/living/simple_animal/hostile/scarybat/batswarm) + current_shapes = list(/mob/living/simple_animal/hostile/scarybat/batswarm) + current_casters = list() + possible_shapes = list(/mob/living/simple_animal/hostile/scarybat/batswarm) /obj/effect/proc_holder/spell/targeted/shapeshift/hellhound name = "Lesser Hellhound Form" @@ -102,13 +102,13 @@ action_icon_state = "glare" shapeshift_type = /mob/living/simple_animal/hostile/hellhound - list/current_shapes = list(/mob/living/simple_animal/hostile/hellhound) - list/current_casters = list() - list/possible_shapes = list(/mob/living/simple_animal/hostile/hellhound) + current_shapes = list(/mob/living/simple_animal/hostile/hellhound) + current_casters = list() + possible_shapes = list(/mob/living/simple_animal/hostile/hellhound) /obj/effect/proc_holder/spell/targeted/shapeshift/hellhound/greater name = "Greater Hellhound Form" shapeshift_type = /mob/living/simple_animal/hostile/hellhound/greater - list/current_shapes = list(/mob/living/simple_animal/hostile/hellhound/greater) - list/current_casters = list() - list/possible_shapes = list(/mob/living/simple_animal/hostile/hellhound/greater) \ No newline at end of file + current_shapes = list(/mob/living/simple_animal/hostile/hellhound/greater) + current_casters = list() + possible_shapes = list(/mob/living/simple_animal/hostile/hellhound/greater) \ No newline at end of file