diff options
Diffstat (limited to 'mbbsd/talk.c')
-rw-r--r-- | mbbsd/talk.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mbbsd/talk.c b/mbbsd/talk.c index 66613e99..a85e3d75 100644 --- a/mbbsd/talk.c +++ b/mbbsd/talk.c @@ -1634,9 +1634,14 @@ descript(int show_mode, userinfo_t * uentp, time_t diff) uentp->five_lose, uentp->five_tie); return description; case 3: +#ifdef DEBUG + snprintf(description, sizeof(description), + "%d", uentp->chess_elo_rating); +#else snprintf(description, sizeof(description), "%3d/%3d/%3d", uentp->chc_win, uentp->chc_lose, uentp->chc_tie); +#endif return description; default: syslog(LOG_WARNING, "damn!!! what's wrong?? show_mode = %d", |