diff options
author | Samuel Villareal | 2010-09-12 01:10:57 +0000 |
---|---|---|
committer | Samuel Villareal | 2010-09-12 01:10:57 +0000 |
commit | 064bf5faa71a9fb4d9d56bf9a33bbb62a7ad4d3e (patch) | |
tree | c951fe35803575a4e19755b014146e3272e8596e /src/strife | |
parent | 3fc2b945a86e4f7f27d7250a31b06d9cf432f757 (diff) | |
download | chocolate-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/strife')
-rw-r--r-- | src/strife/p_switch.c | 2 |
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) |