summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSamuel Villareal2010-09-12 01:10:57 +0000
committerSamuel Villareal2010-09-12 01:10:57 +0000
commit064bf5faa71a9fb4d9d56bf9a33bbb62a7ad4d3e (patch)
treec951fe35803575a4e19755b014146e3272e8596e /src
parent3fc2b945a86e4f7f27d7250a31b06d9cf432f757 (diff)
downloadchocolate-doom-064bf5faa71a9fb4d9d56bf9a33bbb62a7ad4d3e.tar.gz
chocolate-doom-064bf5faa71a9fb4d9d56bf9a33bbb62a7ad4d3e.tar.bz2
chocolate-doom-064bf5faa71a9fb4d9d56bf9a33bbb62a7ad4d3e.zip
+ Fixed flag clearing issue in P_ChangeSwitchTexture
Subversion-branch: /branches/strife-branch Subversion-revision: 2070
Diffstat (limited to 'src')
-rw-r--r--src/strife/p_switch.c2
1 files changed, 1 insertions, 1 deletions
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)