diff options
-rw-r--r-- | Changelog.txt | 2 | ||||
-rw-r--r-- | src/map/atcommand.c | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Changelog.txt b/Changelog.txt index 5c80d282f..a4fefba07 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,6 +1,8 @@ Date Added 02/06 + * Fixed txt build compile problems[1057: MouseJstr] + * Corrected end-of-line issues in source code [1056: MouseJstr] * Coded new command: @MOBINFO <monster name|monster N> [Lupus] the command has also 2 aliases: @monsterinfo, @mi It shows all Monster stats, Element, Race and stuff diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 0d387b580..90db2f5c3 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -8916,6 +8916,8 @@ int atcommand_refreshonline( return 0; } +#endif /* end sql only */ + /*========================================== * Show Monster DB Info v 1.0 * originally by [Lupus] eAthena @@ -9010,4 +9012,3 @@ int atcommand_mobinfo( return 0; } -#endif /* end sql only */ |