Issue information

Issue ID
#4952
Status
Fixed
Severity
Low
Started
Hercules Elf Bot
Jun 7, 2011 2:41
Last Post
Hercules Elf Bot
Mar 19, 2012 19:25
Confirmation
N/A

Hercules Elf Bot - Jun 7, 2011 2:41

Originally posted by [b]Ind[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=4952

CODE
    ShowDebug("Sent packet back!\n");

it's only purpose is to flood the console when intif_wis_message_to_gm is used often. char_sql/inter.c
CODE
// Received wisp message from map-server for ALL gm (just copy the message and resends it to ALL map-servers)
int mapif_parse_WisToGM(int fd)
{
    unsigned char buf[2048]; // 0x3003/0x3803 <packet_len>.w <wispname>.24B <min_gm_level>.w <message>.?B
    
    ShowDebug("Sent packet back!\n");
    memcpy(WBUFP(buf,0), RFIFOP(fd,0), RFIFOW(fd,2));
    WBUFW(buf, 0) = 0x3803;
    mapif_sendall(buf, RFIFOW(fd,2));

    return 0;
}

Hercules Elf Bot - Dec 6, 2011 5:17

Originally posted by [b]Ind[/b]
should be fixed by [r=15014]