Display node's IP when printing the "sending file to node n" message, if noticedownload is turned on

This commit is contained in:
Monster Iestyn 2017-05-26 14:38:59 +01:00
parent 569af9f4c1
commit e09270276e
1 changed files with 1 additions and 1 deletions

View File

@ -495,7 +495,7 @@ static boolean SV_SendFile(INT32 node, const char *filename, UINT8 fileid)
char wadfilename[MAX_WADPATH];
if (cv_noticedownload.value)
CONS_Printf("Sending file \"%s\" to node %d\n", filename, node);
CONS_Printf("Sending file \"%s\" to node %d (%s)\n", filename, node, I_GetNodeAddress(node));
// Find the last file in the list and set a pointer to its "next" field
q = &transfer[node].txlist;