From edd53f22a1d67fcc3d7bf2114543e852bcebc540 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 25 Oct 2014 12:34:46 +0200 Subject: [PATCH] - fixed: The buddha powerup set the wrong flag. --- src/g_shared/a_artifacts.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/g_shared/a_artifacts.cpp b/src/g_shared/a_artifacts.cpp index 1fa3ca985b..4a2d066cde 100644 --- a/src/g_shared/a_artifacts.cpp +++ b/src/g_shared/a_artifacts.cpp @@ -1413,7 +1413,7 @@ void APowerBuddha::InitEffect () if (Owner== NULL || Owner->player == NULL) return; - Owner->player->cheats |= CF_FRIGHTENING; + Owner->player->cheats |= CF_BUDDHA; } //=========================================================================== @@ -1429,7 +1429,7 @@ void APowerBuddha::EndEffect () if (Owner== NULL || Owner->player == NULL) return; - Owner->player->cheats &= ~CF_FRIGHTENING; + Owner->player->cheats &= ~CF_BUDDHA; } // Scanner powerup ----------------------------------------------------------