From 67e4d933957e49c305db8d3a456ac6c658b05e17 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 17 Jun 2012 10:28:55 +0000 Subject: [PATCH] - fixed: The Wraithverge's sprits couldn't be blasted anymore due to some incomplete changes related to how A_Blast handles the blast strength. AHolySpirit::SpecialBlastHandling still used the obsolete BLAST_FULLSTRENGTH constant. SVN r3698 (trunk) --- src/g_hexen/a_clericholy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_hexen/a_clericholy.cpp b/src/g_hexen/a_clericholy.cpp index 0990ac54b2..3d4d92a857 100644 --- a/src/g_hexen/a_clericholy.cpp +++ b/src/g_hexen/a_clericholy.cpp @@ -112,7 +112,7 @@ bool AHolySpirit::Slam (AActor *thing) bool AHolySpirit::SpecialBlastHandling (AActor *source, fixed_t strength) { - if (strength == BLAST_FULLSTRENGTH && tracer == source) + if (tracer == source) { tracer = target; target = source;