mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
- Fixed: ActorMover was not changing its tracer's flags.
This commit is contained in:
parent
b4c74fabd3
commit
395b5695ad
1 changed files with 2 additions and 2 deletions
|
@ -493,8 +493,8 @@ class ActorMover : PathFollower
|
|||
{
|
||||
LinkContext ctx;
|
||||
tracer.UnlinkFromWorld (ctx);
|
||||
bNoBlockmap = true;
|
||||
bSolid = false;
|
||||
tracer.bNoBlockmap = true;
|
||||
tracer.bSolid = false;
|
||||
tracer.LinkToWorld (ctx);
|
||||
}
|
||||
if (tracer.bIsMonster)
|
||||
|
|
Loading…
Reference in a new issue