diff options
author | Haru <haru@dotalux.com> | 2016-01-29 11:45:57 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-01-29 11:45:57 +0100 |
commit | 1500f9a168d61f36e8b1167e964e73a4e764f974 (patch) | |
tree | 0cd3c03ec5decc0ae6e73dc775ae0cd31903d913 /src/common | |
parent | 006e9b2d3e7d5ad3d89fae731d08aedcf73d2dbb (diff) | |
parent | 89bc83eb10741057574c9843350711d52b31685a (diff) | |
download | hercules-1500f9a168d61f36e8b1167e964e73a4e764f974.tar.gz hercules-1500f9a168d61f36e8b1167e964e73a4e764f974.tar.bz2 hercules-1500f9a168d61f36e8b1167e964e73a4e764f974.tar.xz hercules-1500f9a168d61f36e8b1167e964e73a4e764f974.zip |
Merge pull request #1100 from theultramage/gperm
more meaningful names for fields of enum guild_permission
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/mmo.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index 37fc63e29..6f573a571 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -749,7 +749,8 @@ enum { //Change Member Infos enum guild_permission { // Guild permissions GPERM_INVITE = 0x01, GPERM_EXPEL = 0x10, - GPERM_BOTH = GPERM_INVITE|GPERM_EXPEL, + GPERM_ALL = GPERM_INVITE|GPERM_EXPEL, + GPERM_MASK = GPERM_ALL, }; enum { |