diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-14 18:27:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-14 18:50:50 +0300 |
commit | 6041f7d3be8a0792a287fc9cff7f14c1c3c3b73c (patch) | |
tree | 964b6acde70d4875d9ba260628def1de63e3b42f /src/map/itemdb.c | |
parent | e5543af5e3b431d7411fa1a493402ea23e9691c2 (diff) | |
download | hercules-6041f7d3be8a0792a287fc9cff7f14c1c3c3b73c.tar.gz hercules-6041f7d3be8a0792a287fc9cff7f14c1c3c3b73c.tar.bz2 hercules-6041f7d3be8a0792a287fc9cff7f14c1c3c3b73c.tar.xz hercules-6041f7d3be8a0792a287fc9cff7f14c1c3c3b73c.zip |
Dont load roulette_db.conf if roulette disabled.
Diffstat (limited to 'src/map/itemdb.c')
-rw-r--r-- | src/map/itemdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/itemdb.c b/src/map/itemdb.c index 630bc4488..ce6232965 100644 --- a/src/map/itemdb.c +++ b/src/map/itemdb.c @@ -2343,7 +2343,7 @@ void do_init_itemdb(bool minimal) { clif->cashshop_load(); /** it failed? we disable it **/ - if( !clif->parse_roulette_db() ) + if (battle_config.feature_roulette == 1 && !clif->parse_roulette_db()) battle_config.feature_roulette = 0; } void itemdb_defaults(void) { |