mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-26 05:51:20 +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;
|
LinkContext ctx;
|
||||||
tracer.UnlinkFromWorld (ctx);
|
tracer.UnlinkFromWorld (ctx);
|
||||||
bNoBlockmap = true;
|
tracer.bNoBlockmap = true;
|
||||||
bSolid = false;
|
tracer.bSolid = false;
|
||||||
tracer.LinkToWorld (ctx);
|
tracer.LinkToWorld (ctx);
|
||||||
}
|
}
|
||||||
if (tracer.bIsMonster)
|
if (tracer.bIsMonster)
|
||||||
|
|
Loading…
Reference in a new issue