# HG changeset patch # User edwarj4 # Date 1258415664 0 # Node ID 63dcd855bc8e86f518e0ac07acffa663d4f76ce1 # Parent 8bd134f676be8c588bf746b0d73c7da473b737cd Record experience level in the logfile too diff -r 8bd134f676be -r 63dcd855bc8e rogue3/rip.c --- a/rogue3/rip.c Thu Nov 12 12:53:29 2009 +0000 +++ b/rogue3/rip.c Mon Nov 16 23:54:24 2009 +0000 @@ -314,7 +314,8 @@ if (waswizard) return; #ifdef LOGFILE - sprintf(logmessage, "%d %d %.20s ", time(NULL), amount, whoami); + sprintf(logmessage, "%d %d %.20s %d ", time(NULL), amount, whoami, + pstats.s_lvl); if (flags == 0) /* died */ { strcat(logmessage, "killed by a");