summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony J. White <tjw@tjw.org>2006-10-24 21:35:45 +0000
committerTony J. White <tjw@tjw.org>2006-10-24 21:35:45 +0000
commitadf7edcb953bfce24e3a91a3f3780497801a264b (patch)
treeec39b6d04067d54d4ee7eb8fd245eabf1712c161
parent971dbab460427e44e05d55f2c3aa043cc0c968be (diff)
* don't spam broadcast the output spam of the !time g_admin spam command
-rw-r--r--src/game/g_admin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_admin.c b/src/game/g_admin.c
index 851d3491..38b864bd 100644
--- a/src/game/g_admin.c
+++ b/src/game/g_admin.c
@@ -1309,7 +1309,7 @@ qboolean G_admin_time( gentity_t *ent, int skiparg )
int t;
t = trap_RealTime( &qt );
- AP( va( "print \"^3!time: ^7local time is %02i:%02i:%02i\n\"",
+ ADMP( va( "^3!time: ^7local time is %02i:%02i:%02i\n",
qt.tm_hour, qt.tm_min, qt.tm_sec ) );
return qtrue;
}