diff options
author | shennetsind <ind@henn.et> | 2013-05-09 13:29:50 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-05-09 13:29:50 -0300 |
commit | 697a0a1b9781c93ce91459e00c1cc11f271c18fc (patch) | |
tree | c16d62db4fc4f8a24c5bb4b76fc8a6df1771329d /src/char | |
parent | 840bad1e94f22efc6ceb25f031476c3182e394c0 (diff) | |
download | hercules-697a0a1b9781c93ce91459e00c1cc11f271c18fc.tar.gz hercules-697a0a1b9781c93ce91459e00c1cc11f271c18fc.tar.bz2 hercules-697a0a1b9781c93ce91459e00c1cc11f271c18fc.tar.xz hercules-697a0a1b9781c93ce91459e00c1cc11f271c18fc.zip |
Fixed Bug #7225
http://hercules.ws/board/tracker/issue-7225-about-perfect-hide-status/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/char')
-rw-r--r-- | src/char/char.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/char/char.c b/src/char/char.c index d07995cc1..f68456d9a 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -1821,7 +1821,7 @@ int mmo_char_tobuf(uint8* buffer, struct mmo_charstatus* p) WBUFL(buf,16) = p->job_level; WBUFL(buf,20) = 0; // probably opt1 WBUFL(buf,24) = 0; // probably opt2 - WBUFL(buf,28) = p->option; + WBUFL(buf,28) = (p->option &~ 0x40); WBUFL(buf,32) = p->karma; WBUFL(buf,36) = p->manner; WBUFW(buf,40) = min(p->status_point, INT16_MAX); |