diff options
author | shennetsind <ind@henn.et> | 2013-04-15 23:27:29 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-04-15 23:27:29 -0300 |
commit | 2967335cb41866162a69732abe4fc3a07b02e27c (patch) | |
tree | 08ce3282b6204cfd0491a9aba2811139f046ada8 /src/common/mmo.h | |
parent | 7a853ef214cc4f96574358759489f3769a805e4c (diff) | |
download | hercules-2967335cb41866162a69732abe4fc3a07b02e27c.tar.gz hercules-2967335cb41866162a69732abe4fc3a07b02e27c.tar.bz2 hercules-2967335cb41866162a69732abe4fc3a07b02e27c.tar.xz hercules-2967335cb41866162a69732abe4fc3a07b02e27c.zip |
Fixed Bug #7127
Also Implemented allow party invitations state.
Implemented saving of client options (atm show_equip and allow party invitation)
http://hercules.ws/board/tracker/issue-7127-view-equipment/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/common/mmo.h')
-rw-r--r-- | src/common/mmo.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index bd6b29f76..c0842bac2 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -219,6 +219,12 @@ enum e_skill_flag //... }; +enum e_mmo_charstatus_opt { + OPT_NONE = 0x0, + OPT_SHOW_EQUIP = 0x1, + OPT_ALLOW_PARTY = 0x2, +}; + struct s_skill { unsigned short id; unsigned char lv; @@ -378,7 +384,7 @@ struct mmo_charstatus { #ifdef HOTKEY_SAVING struct hotkey hotkeys[MAX_HOTKEYS]; #endif - bool show_equip; + bool show_equip, allow_party; unsigned short rename; unsigned short slotchange; |