- Fixed: In case the path to strife1.wad didn't contain any '/' an
incorrect path was created for voices.wad. - Fixed: The code building the path for Strife's voices.wad called the wrong FString constructor. - Fixed: LS_Thing_SetGoal set MF5_CHASEGOAL in flags, not flags5. SVN r128 (trunk)
This commit is contained in:
parent
a39f5bb8f7
commit
1971f97fd6
3 changed files with 10 additions and 3 deletions
|
|
@ -1325,7 +1325,7 @@ FUNC(LS_Thing_SetGoal)
|
|||
{
|
||||
self->goal = goal;
|
||||
if (arg3 == 0) self->flags5 &=~ MF5_CHASEGOAL;
|
||||
else self->flags |= MF5_CHASEGOAL;
|
||||
else self->flags5 |= MF5_CHASEGOAL;
|
||||
if (self->target == NULL)
|
||||
{
|
||||
self->reactiontime = arg2 * TICRATE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue