From 302cb41403ceba4f34c8f0cd3f431916e9d13a33 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 20 Jan 2017 17:20:50 +0100 Subject: [PATCH] - fixed typo in MorphMonster definition. --- src/g_shared/a_morph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_shared/a_morph.cpp b/src/g_shared/a_morph.cpp index c8220af5a9..0c95c77b8e 100644 --- a/src/g_shared/a_morph.cpp +++ b/src/g_shared/a_morph.cpp @@ -443,7 +443,7 @@ bool P_MorphMonster (AActor *actor, PClassActor *spawntype, int duration, int st DEFINE_ACTION_FUNCTION(AActor, MorphMonster) { PARAM_SELF_PROLOGUE(AActor); - PARAM_CLASS(spawntype, APlayerPawn); + PARAM_CLASS(spawntype, AActor); PARAM_INT(duration); PARAM_INT(style); PARAM_CLASS_DEF(enter_flash, AActor);