Browse Source

Reverted a portion of r17363 until proper packet versions are obtainable on login - Fixes bugreport:7733

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@17365 54d463be-8e91-2dee-dedb-b68131a5f0ec
akinari1087 12 years ago
parent
commit
37ae4a88ea
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/char/char.c

+ 2 - 2
src/char/char.c

@@ -2001,11 +2001,11 @@ void mmo_char_send082d(int fd, struct char_session_data* sd) {
 
 void mmo_char_send(int fd, struct char_session_data* sd){
 	ShowInfo("sd->version = %d\n",sd->version);
-	if(sd->version >= 34){ //20130000
+#if PACKETVER >= 20130000
 		mmo_char_send082d(fd,sd);
 		char_charlist_notify(fd,sd);
 		char_block_character(fd,sd);
-	}
+#endif
 	//@FIXME dump from kro doesn't show 6b transmission
 	mmo_char_send006b(fd,sd);
 }