diff options
author | Matheus Macabu <mkbu95@gmail.com> | 2013-07-04 19:19:52 -0300 |
---|---|---|
committer | Matheus Macabu <mkbu95@gmail.com> | 2013-07-04 19:19:52 -0300 |
commit | e8adea6f0cbad25b5ac21944b16099cce155d050 (patch) | |
tree | bf393e8b5ce364fb8f0524353b4e0f862ec68026 /src/map/mob.c | |
parent | 0f2899cf48bd4a324e92dc33dc2bc28d1edcdae3 (diff) | |
download | hercules-e8adea6f0cbad25b5ac21944b16099cce155d050.tar.gz hercules-e8adea6f0cbad25b5ac21944b16099cce155d050.tar.bz2 hercules-e8adea6f0cbad25b5ac21944b16099cce155d050.tar.xz hercules-e8adea6f0cbad25b5ac21944b16099cce155d050.zip |
Implemented sitting set of script commands: sit(), stand(), issit() as per suggested in topic #1204. See documentation for more information on these commands.
Also fixed leftover from db_use_sql split.
Signed-off-by: Matheus Macabu <mkbu95@gmail.com>
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index ad3dd50c3..7482a9d56 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -4591,6 +4591,9 @@ static void mob_load(void) if (iMap->db_use_sql_mob_db) { mob_read_sqldb(); + } + if (iMap->db_use_sql_mob_skill_db) + { mob_read_sqlskilldb(); } else |