diff options
author | Dastgir <dastgirp@gmail.com> | 2018-09-02 11:32:03 +0530 |
---|---|---|
committer | Dastgir <dastgirp@gmail.com> | 2018-10-13 16:45:25 +0530 |
commit | d2c21b1e412a7a2f3c965a3335ea78a992e7b873 (patch) | |
tree | c43cd899dbbfaaca7e2d225178d004e5ffe048b3 /src/map/battle.h | |
parent | 611bda248b3cb221bef4ad81f74c0508a76095d9 (diff) | |
download | hercules-d2c21b1e412a7a2f3c965a3335ea78a992e7b873.tar.gz hercules-d2c21b1e412a7a2f3c965a3335ea78a992e7b873.tar.bz2 hercules-d2c21b1e412a7a2f3c965a3335ea78a992e7b873.tar.xz hercules-d2c21b1e412a7a2f3c965a3335ea78a992e7b873.zip |
Fixed Issue #2177
If Item Price is 0, it is now changed to 1.
Diffstat (limited to 'src/map/battle.h')
-rw-r--r-- | src/map/battle.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/battle.h b/src/map/battle.h index 9f5207e95..4472c0c52 100644 --- a/src/map/battle.h +++ b/src/map/battle.h @@ -570,6 +570,9 @@ struct Battle_Config { int feature_enable_attendance_system; int feature_attendance_endtime; + + int min_item_buy_price; + int min_item_sell_price; }; /* criteria for battle_config.idletime_critera */ |