diff options
-rw-r--r-- | Changelog.txt | 4 | ||||
-rw-r--r-- | src/map/atcommand.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Changelog.txt b/Changelog.txt index 75ec8cbee..252c0de95 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,6 +1,8 @@ Date Added -12/27 +12/28 + * Fixed @jobchange to not default to upper (SVN 837) [MouseJstr] * Fixed a compile error in @mobsearch (SVN 836) [MouseJstr] +12/27 * Updated 1206's packet fuctions in clif.c [celest] * Updated the new guild skills - cannot be reused within 5 minutes of activating it [celest] diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 3c1c04e7f..26c425d5f 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -1952,7 +1952,7 @@ int atcommand_jobchange( const int fd, struct map_session_data* sd, const char* command, const char* message) { - int job = 0, upper = -1; + int job = 0, upper = 0; nullpo_retr(-1, sd); if (!message || !*message || sscanf(message, "%d %d", &job, &upper) < 1) { |