- 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:
Christoph Oelckers 2006-05-18 15:03:35 +00:00
commit 1971f97fd6
3 changed files with 10 additions and 3 deletions

View file

@ -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;