Added a missing argument to a warning containing a format specifier.
git-svn-id: https://svn.code.sf.net/p/rathena/svn/branches/renewal@14465 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
8f8d25a76d
commit
1c0fef5343
@ -1,5 +1,7 @@
|
|||||||
Date Added
|
Date Added
|
||||||
|
|
||||||
|
2010/11/16
|
||||||
|
* Added a missing argument to a warning containing a format specifier. [Paradox924X]
|
||||||
2010/11/15
|
2010/11/15
|
||||||
* Follow-up to r14456. Default initialize atk_rate to 0 instead of 100 to match new effect of bonus bAtkRate. [Paradox924X]
|
* Follow-up to r14456. Default initialize atk_rate to 0 instead of 100 to match new effect of bonus bAtkRate. [Paradox924X]
|
||||||
2010/11/14
|
2010/11/14
|
||||||
|
@ -3418,7 +3418,7 @@ static bool mob_parse_dbrow(char** str)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (pcdb_checkid(class_)) {
|
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;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user