From 890e9ecdddd36e1075098a3dcbaf0a93f73ddb51 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 7 May 2014 17:18:44 +0200 Subject: [PATCH] - typo in resurrection code. --- src/p_mobj.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/p_mobj.cpp b/src/p_mobj.cpp index 05eddf3ab..78b1124d4 100644 --- a/src/p_mobj.cpp +++ b/src/p_mobj.cpp @@ -1,4 +1,5 @@ // Emacs style mode select -*- C++ -*- +// Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // // $Id:$ @@ -6082,7 +6083,7 @@ FState *AActor::GetRaiseState() } if (tics != -1 && // not lying still yet - state->GetCanRaise()) // or not ready to be raised yet + !state->GetCanRaise()) // or not ready to be raised yet { return NULL; }