diff options
author | Haru <haru@dotalux.com> | 2019-05-05 18:09:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-05 18:09:32 +0200 |
commit | 78f9922a3e8276b920cbbdf9c273e03e22c6eb8d (patch) | |
tree | af2a9b0425228bd17a06e2c9fd36c7618b2bebe7 /conf | |
parent | d55b291c88cff726c5ac99b4d6f40efe416cf83e (diff) | |
parent | 781011398ba501a50e120d6ad8dc86d155c8ce9e (diff) | |
download | hercules-78f9922a3e8276b920cbbdf9c273e03e22c6eb8d.tar.gz hercules-78f9922a3e8276b920cbbdf9c273e03e22c6eb8d.tar.bz2 hercules-78f9922a3e8276b920cbbdf9c273e03e22c6eb8d.tar.xz hercules-78f9922a3e8276b920cbbdf9c273e03e22c6eb8d.zip |
Merge pull request #2309 from guilherme-gm/201810-randomopt-drop
Support for monster drops with Random Options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/map/battle/drops.conf | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/conf/map/battle/drops.conf b/conf/map/battle/drops.conf index bdbf7c199..cf09d14d9 100644 --- a/conf/map/battle/drops.conf +++ b/conf/map/battle/drops.conf @@ -146,3 +146,8 @@ drops_by_luk2: 0 // 1: Only marine spheres drop items. // 2: All alchemist summons drop items. alchemist_summon_reward: 1 + +// The maximum number of full iterations that server can do when dropping an item with options. +// When picking random options for a dropped item, it does lots of iterations to choose the option to be set, +// this value limits the number of iterations to avoid making the server hang in a long loop. +option_drop_max_loop: 10 |