mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- Fixed: Voodoo dolls must not check reactiontime in P_SlideMove.
SVN r2153 (trunk)
This commit is contained in:
parent
12a819cf7c
commit
113a438b01
1 changed files with 1 additions and 1 deletions
|
@ -2346,7 +2346,7 @@ void FSlide::SlideMove (AActor *mo, fixed_t tryx, fixed_t tryy, int numsteps)
|
||||||
hitcount = 3;
|
hitcount = 3;
|
||||||
slidemo = mo;
|
slidemo = mo;
|
||||||
|
|
||||||
if (mo->player && mo->reactiontime > 0)
|
if (mo->player && mo->player->mo == mo && mo->reactiontime > 0)
|
||||||
return; // player coming right out of a teleporter.
|
return; // player coming right out of a teleporter.
|
||||||
|
|
||||||
retry:
|
retry:
|
||||||
|
|
Loading…
Reference in a new issue