commit 064bf5faa71a9fb4d9d56bf9a33bbb62a7ad4d3e
Author: Samuel Villareal <svkaiser@gmail.com>
AuthorDate: Sun Sep 12 01:10:57 2010 +0000
Commit: Samuel Villareal <svkaiser@gmail.com>
CommitDate: Sun Sep 12 01:10:57 2010 +0000
+ Fixed flag clearing issue in P_ChangeSwitchTexture
Subversion-branch: /branches/strife-branch
Subversion-revision: 2070
---
src/strife/p_switch.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/strife/p_switch.c b/src/strife/p_switch.c
index 0e1da1e8..9ea42e1b 100644
--- a/src/strife/p_switch.c
+++ b/src/strife/p_switch.c
@@ -262,7 +262,7 @@ void P_ChangeSwitchTexture(line_t* line, int useAgain)
// villsa [STRIFE] check for linetype 182 (break glass)
if(line->special == 182)
{
- line->flags &= ~ML_BLOCKMONSTERS;
+ line->flags &= ~ML_BLOCKING;
breakglass = true;
if(useAgain)