Fixed the WFIFO issue in char select

Fixed #1082
"Reverted" aea025e
This commit is contained in:
Lemongrass3110 2016-03-21 16:27:12 +01:00
parent 41ed114493
commit 33f397c025

View File

@ -302,7 +302,9 @@ int chclif_parse_pincode_setnew( int fd, struct char_session_data* sd ){
// Tell client how many pages, kRO sends 17 (Yommy) // Tell client how many pages, kRO sends 17 (Yommy)
//---------------------------------------- //----------------------------------------
void chclif_charlist_notify( int fd, struct char_session_data* sd ){ void chclif_charlist_notify( int fd, struct char_session_data* sd ){
#if PACKETVER >= 20151001 // This is needed on RE clients from october 2015 onwards
// If you want to use one replace false by true here
#if false && PACKETVER >= 20151001
WFIFOHEAD(fd, 10); WFIFOHEAD(fd, 10);
WFIFOW(fd, 0) = 0x9a0; WFIFOW(fd, 0) = 0x9a0;
// pages to req / send them all in 1 until mmo_chars_fromsql can split them up // pages to req / send them all in 1 until mmo_chars_fromsql can split them up