- added a 'brief' mode to linetarget and info.
This commit is contained in:
parent
35552ce0cb
commit
43e5f035e4
3 changed files with 6 additions and 6 deletions
|
|
@ -39,7 +39,7 @@
|
|||
|
||||
#include "c_functions.h"
|
||||
|
||||
void C_PrintInfo(AActor *target)
|
||||
void C_PrintInfo(AActor *target, bool verbose)
|
||||
{
|
||||
if (target->player)
|
||||
Printf("Player=%s, ", target->player->userinfo.GetName());
|
||||
|
|
@ -47,7 +47,7 @@ void C_PrintInfo(AActor *target)
|
|||
target->GetClass()->TypeName.GetChars(),
|
||||
target->health,
|
||||
target->SpawnHealth());
|
||||
PrintMiscActorInfo(target);
|
||||
if (verbose) PrintMiscActorInfo(target);
|
||||
}
|
||||
|
||||
void C_AimLine(FTranslatedLineTarget *t, bool nonshootable)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue