Bug: Score affects sometimes display in 3 columns
Danger: Trivial - Display bug only
Found by: Remcon
Fixed by: Remcon
---
player.c, do_score
Locate:
if( ch->top_level < 20 )
{
pager_printf( ch, "[%-34.34s] ", sktmp->name );
if( i == 0 )
i = 2;
if( ( ++i % 3 ) == 0 )
send_to_pager( "\r\n", ch );
}
Change to:
if( ch->top_level < 20 )
{
pager_printf( ch, "[%-34.34s] ", sktmp->name );
if( i == 0 )
i = 1;
if( ( ++i % 3 ) == 0 )
send_to_pager( "\r\n", ch );
}
A minor thing. The display would sometimes output in 3 columns when it was only intended to be done in 2.