Przeglądaj źródła

whops, typo.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@15127 54d463be-8e91-2dee-dedb-b68131a5f0ec
shennetsind 13 lat temu
rodzic
commit
5b244ffdd0
3 zmienionych plików z 3 dodań i 3 usunięć
  1. 1 1
      src/common/core.h
  2. 1 1
      src/common/showmsg.c
  3. 1 1
      src/map/pc.c

+ 1 - 1
src/common/core.h

@@ -8,7 +8,7 @@ extern int arg_c;
 extern char **arg_v;
 
 #if defined(BUILDBOT)
-extern bool buildbotflag;
+	extern bool buildbotflag;
 #endif
 
 /// @see E_CORE_ST

+ 1 - 1
src/common/showmsg.c

@@ -694,7 +694,7 @@ int _vShowMessage(enum msg_type flag, const char *string, va_list ap)
 	if( flag == MSG_WARNING ||
 	    flag == MSG_ERROR ||
 	    flag == MSG_SQL ) {
-		bool buildbotflag = true;
+		buildbotflag = true;
 	}
 #endif
 	if(

+ 1 - 1
src/map/pc.c

@@ -962,7 +962,7 @@ bool pc_authok(struct map_session_data *sd, int login_id2, time_t expiration_tim
 	skill_cooldown_load(sd);
 	
 	/**
-	 * Fixed login-without-aura issue (the screen won't blink at this point, don't worry :P)
+	 * Fixes login-without-aura glitch (the screen won't blink at this point, don't worry :P)
 	 **/
 	clif_changemap(sd,sd->mapindex,sd->bl.x,sd->bl.y);