diff options
Diffstat (limited to 'src/strife/p_switch.c')
-rw-r--r-- | src/strife/p_switch.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/strife/p_switch.c b/src/strife/p_switch.c index 9ba321f7..6c88e885 100644 --- a/src/strife/p_switch.c +++ b/src/strife/p_switch.c @@ -820,6 +820,19 @@ P_UseSpecialLine EV_SlidingDoor(line, thing); break; + case 207: + // villsa [STRIFE] remote sliding door + if(EV_RemoteSlidingDoor(line, thing)) + P_ChangeSwitchTexture(line, 1); + + case 229: + // villsa [STRIFE] sigil sliding door + if(thing->player && thing->player->sigiltype == 4) + { + if(EV_RemoteSlidingDoor(line, thing)) + P_ChangeSwitchTexture(line, 1); + } + case 666: // villsa [STRIFE] Move wall P_MoveWall(line, thing); |