- added TID to actorlist and similar commands output

This commit is contained in:
Rachael Alexanderson 2017-09-28 11:33:53 -04:00
parent 2daa64428d
commit 3031d48bfb

View file

@ -957,8 +957,13 @@ static void PrintFilteredActorList(const ActorTypeChecker IsActorType, const cha
{
counter++;
if (!countOnly)
Printf("%s at (%f,%f,%f)\n",
{
Printf("%s at (%f,%f,%f)",
mo->GetClass()->TypeName.GetChars(), mo->X(), mo->Y(), mo->Z());
if (mo->tid)
Printf(" (TID:%d)", mo->tid);
Printf("\n");
}
}
}
}