Explorar o código

Fixed a typo in /map/clif.c (acount_id -> account_id)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12219 54d463be-8e91-2dee-dedb-b68131a5f0ec
L0ne_W0lf %!s(int64=17) %!d(string=hai) anos
pai
achega
b03a01ee95
Modificáronse 2 ficheiros con 2 adicións e 1 borrados
  1. 1 0
      Changelog-Trunk.txt
  2. 1 1
      src/map/clif.c

+ 1 - 0
Changelog-Trunk.txt

@@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK.  ALL UNTESTED BUGFIXES/FEATURES GO
 IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
 
 2007/02/19
+	* Rev. 12219 Fixed a typo in /map/clif.c (acount_id -> account_id) [L0ne_W0lf]
 	* Forgotten update to the definition of script command 'input'.
 	* Enabled DEBUG_MEMMGR only in DEBUG mode. 
 	* Made autotrading characters be kicked instead of reporting double login.

+ 1 - 1
src/map/clif.c

@@ -7648,7 +7648,7 @@ void clif_parse_WantToConnection(int fd, TBL_PC* sd)
 		return;
 	} else if( map_knowsaccount(account_id) )
 	{// double login
-		sd = map_id2sd(acount_id);
+		sd = map_id2sd(account_id);
 		if( sd  && sd->state.autotrade )
 			map_quit(sd);// kick autotrading character
 		else