diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/mob.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 4fbac2046..fc2bd2d1f 100644 --- a/Changelog-Trunk.txt +++ b/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 diff --git a/src/map/mob.c b/src/map/mob.c index 7452bbd81..81fc9e68b 100644 --- a/src/map/mob.c +++ b/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; } |