diff options
-rw-r--r-- | Changelog.txt | 1 | ||||
-rw-r--r-- | src/map/atcommand.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog.txt b/Changelog.txt index 519fa84e6..75ec8cbee 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,5 +1,6 @@ Date Added 12/27 + * Fixed a compile error in @mobsearch (SVN 836) [MouseJstr] * 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 1a395d7e4..3c1c04e7f 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -829,7 +829,7 @@ static int atmobsearch_sub(struct block_list *bl,va_list ap) return 0; } mob_id = va_arg(ap,int); - fd = va_arg(ap,const int); + fd = va_arg(ap,int); md = (struct mob_data *)bl; |