mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-22 20:21:26 +00:00
- added TID to actorlist and similar commands output
This commit is contained in:
parent
2daa64428d
commit
3031d48bfb
1 changed files with 6 additions and 1 deletions
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue