فهرست منبع

Added a missing argument to a warning containing a format specifier.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@14465 54d463be-8e91-2dee-dedb-b68131a5f0ec
Paradox924X 14 سال پیش
والد
کامیت
f3217a0ad7
2فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  1. 2 0
      Changelog-Trunk.txt
  2. 1 1
      src/map/mob.c

+ 2 - 0
Changelog-Trunk.txt

@@ -1,5 +1,7 @@
 Date	Added
 
+2010/11/16
+	* Added a missing argument to a warning containing a format specifier. [Paradox924X]
 2010/11/15
 	* Follow-up to r14456. Default initialize atk_rate to 0 instead of 100 to match new effect of bonus bAtkRate. [Paradox924X]
 2010/11/14

+ 1 - 1
src/map/mob.c

@@ -3418,7 +3418,7 @@ static bool mob_parse_dbrow(char** str)
 		return false;
 	}
 	if (pcdb_checkid(class_)) {
-		ShowWarning("Mob with ID: %d not loaded. That ID is reserved for player classes.\n");
+		ShowWarning("Mob with ID: %d not loaded. That ID is reserved for player classes.\n", class_);
 		return false;
 	}