summaryrefslogtreecommitdiff
path: root/src/common/mmo.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2019-03-29 22:53:35 +0300
committerAndrei Karas <akaras@inbox.ru>2019-04-07 22:38:35 +0300
commit0a349742abd855ae4b6edbe8735937768cdfeb07 (patch)
tree5cd95c4160b719f5fdfe7cfc78dcceb554eb6fd8 /src/common/mmo.h
parent0a5ee140c74989d5fb2cbc9a22150ff66bbcfb07 (diff)
downloadhercules-0a349742abd855ae4b6edbe8735937768cdfeb07.tar.gz
hercules-0a349742abd855ae4b6edbe8735937768cdfeb07.tar.bz2
hercules-0a349742abd855ae4b6edbe8735937768cdfeb07.tar.xz
hercules-0a349742abd855ae4b6edbe8735937768cdfeb07.zip
Add allow call option
Diffstat (limited to 'src/common/mmo.h')
-rw-r--r--src/common/mmo.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h
index 3a0f73520..2fc464243 100644
--- a/src/common/mmo.h
+++ b/src/common/mmo.h
@@ -487,6 +487,7 @@ enum e_mmo_charstatus_opt {
OPT_NONE = 0x0,
OPT_SHOW_EQUIP = 0x1,
OPT_ALLOW_PARTY = 0x2,
+ OPT_ALLOW_CALL = 0x4,
};
enum e_item_bound_type {
@@ -733,7 +734,9 @@ struct mmo_charstatus {
#ifdef HOTKEY_SAVING
struct hotkey hotkeys[MAX_HOTKEYS];
#endif
- bool show_equip, allow_party;
+ bool show_equip;
+ bool allow_party;
+ bool allow_call;
unsigned short rename;
unsigned short slotchange;