Skip to content

Commit

Permalink
Increased the max length of debug strings printed to admin console to…
Browse files Browse the repository at this point in the history
… 1024 (from 60)

Modified GetMemberNames() in guild.kod to use newlines.
  • Loading branch information
Daenks committed Jan 26, 2014
1 parent f100891 commit f647a1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion blakserv/adminfn.c
Original file line number Diff line number Diff line change
Expand Up @@ -3859,7 +3859,7 @@ void AdminSendObject(int session_id,admin_parm_type parms[],
int len;
if (snod && snod->len_data)
{
len = std::min(snod->len_data, 60);
len = std::min(snod->len_data, 1024);
aprintf(": == \"");
AdminBufferSend(snod->data,len);
if (len < snod->len_data)
Expand Down
2 changes: 1 addition & 1 deletion kod/object/passive/guild.kod
Original file line number Diff line number Diff line change
Expand Up @@ -1280,7 +1280,7 @@ messages:
for i in plMembers
{
AppendTempString(Send(First(i),@GetTrueName));
AppendTempString(",");
AppendTempString(",\n");
}
return GetTempString();
}
Expand Down

0 comments on commit f647a1e

Please sign in to comment.