diff options
author | Haru <haru@dotalux.com> | 2019-06-03 00:18:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-03 00:18:22 +0200 |
commit | d60605d1898d584e4ed527011ab65f35e2238b2f (patch) | |
tree | 78aebf10a2b435a2b0ff5593f0d4db775b47218b /src/map/mob.c | |
parent | 8226ed932ed4bea1da3bf1e5436272d73f2a8222 (diff) | |
parent | d2b8463b7d2b64ab122e86b2f9e44cba0b680caf (diff) | |
download | hercules-d60605d1898d584e4ed527011ab65f35e2238b2f.tar.gz hercules-d60605d1898d584e4ed527011ab65f35e2238b2f.tar.bz2 hercules-d60605d1898d584e4ed527011ab65f35e2238b2f.tar.xz hercules-d60605d1898d584e4ed527011ab65f35e2238b2f.zip |
Merge pull request #2486 from guilherme-gm/minimal-loadoptions
Adds Option DB and Option Drop Groups DB to be loaded on minimal mode
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index aa938a1e7..8511f8523 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -5519,7 +5519,8 @@ static bool mob_readdb_itemratio(char *str[], int columns, int current) static void mob_load(bool minimal) { if (minimal) { - // Only read the mob db in minimal mode + // Only read the mob db and option drops in minimal mode + mob->read_optdrops_db(); mob->readdb(); return; } |