mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 15:22:16 +00:00
Expanded 'info' CCMD to also print the TID.
SVN r3531 (trunk)
This commit is contained in:
parent
235a09d92a
commit
4ece349ee5
1 changed files with 1 additions and 0 deletions
|
@ -5873,6 +5873,7 @@ void PrintMiscActorInfo(AActor * query)
|
|||
(query->special ? LineSpecialsInfo[query->special]->name : "None"),
|
||||
query->args[0], query->args[1], query->args[2], query->args[3],
|
||||
query->args[4], query->special1, query->special2);
|
||||
Printf("\nTID is %d", query->tid);
|
||||
Printf("\nIts coordinates are x: %f, y: %f, z:%f, floor:%f, ceiling:%f.",
|
||||
FIXED2FLOAT(query->x), FIXED2FLOAT(query->y), FIXED2FLOAT(query->z),
|
||||
FIXED2FLOAT(query->floorz), FIXED2FLOAT(query->ceilingz));
|
||||
|
|
Loading…
Reference in a new issue