mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-26 22:11:43 +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++;
|
counter++;
|
||||||
if (!countOnly)
|
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());
|
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