diff options
author | Haru <haru@dotalux.com> | 2015-10-02 01:19:36 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-10-02 01:23:28 +0200 |
commit | 4db986b93566d673c226971fa045f1dc99645242 (patch) | |
tree | 1b60b9b76d696a6127420224c78074cd43ab5565 /src/common/mmo.h | |
parent | 5edf0c3473f5194e9872c516159b8bc971d095b5 (diff) | |
download | hercules-4db986b93566d673c226971fa045f1dc99645242.tar.gz hercules-4db986b93566d673c226971fa045f1dc99645242.tar.bz2 hercules-4db986b93566d673c226971fa045f1dc99645242.tar.xz hercules-4db986b93566d673c226971fa045f1dc99645242.zip |
Skip bound items in the mergeitem feature.
- Fixes #757, thanks to kyeme
- Based on Emistry's PR #754 (improved)
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common/mmo.h')
-rw-r--r-- | src/common/mmo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index 75b62fdc4..012eec935 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -299,6 +299,7 @@ enum e_mmo_charstatus_opt { }; enum e_item_bound_type { + IBT_NONE = 0x0, IBT_MIN = 0x1, IBT_ACCOUNT = 0x1, IBT_GUILD = 0x2, |