diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-03-04 01:39:30 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-03-04 01:39:30 +0300 |
commit | 44ef6547161dd3cd2e1bb4053bb5e8619e6dc0d0 (patch) | |
tree | 16ef6000be72c8959672d1210e89f595a55925a5 /src/net/tmwa/beingrecv.cpp | |
parent | b889e7fe2d2b1162bad9cf39831e1becf3d9e480 (diff) | |
download | plus-44ef6547161dd3cd2e1bb4053bb5e8619e6dc0d0.tar.gz plus-44ef6547161dd3cd2e1bb4053bb5e8619e6dc0d0.tar.bz2 plus-44ef6547161dd3cd2e1bb4053bb5e8619e6dc0d0.tar.xz plus-44ef6547161dd3cd2e1bb4053bb5e8619e6dc0d0.zip |
Add support for hightlight attribute in groups.xml
This attribute allow to highlight gm groups based on groups.xml
Diffstat (limited to 'src/net/tmwa/beingrecv.cpp')
-rw-r--r-- | src/net/tmwa/beingrecv.cpp | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/src/net/tmwa/beingrecv.cpp b/src/net/tmwa/beingrecv.cpp index c47b3e2c7..a40bcd1aa 100644 --- a/src/net/tmwa/beingrecv.cpp +++ b/src/net/tmwa/beingrecv.cpp @@ -64,25 +64,14 @@ namespace TmwAthena static void setGm(Being *const dstBeing, const uint16_t gmstatus) { - if (dstBeing != localPlayer) + if (dstBeing != localPlayer && + gmstatus == 0x80) { - if (gmstatus == 0x80) - { - dstBeing->setGroupId(paths.getIntValue("gmDefaultLevel")); - dstBeing->setGM(true); - } - else - { - dstBeing->setGroupId(gmstatus); - dstBeing->setGM(gmstatus != 0); - } + dstBeing->setGroupId(paths.getIntValue("gmDefaultLevel")); } else { - if (gmstatus != 0) - dstBeing->setGM(true); - else - dstBeing->setGM(false); + dstBeing->setGroupId(gmstatus); } } |