mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 07:37:01 +00:00
[7192] Fixed glyph opening order for lvl 30 and 50.
Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
parent
8292567376
commit
b27fbe8e4e
2 changed files with 3 additions and 3 deletions
|
|
@ -19164,9 +19164,9 @@ void Player::InitGlyphsForLevel()
|
|||
if(level >= 15)
|
||||
value |= (0x01 | 0x02);
|
||||
if(level >= 30)
|
||||
value |= 0x04;
|
||||
if(level >= 50)
|
||||
value |= 0x08;
|
||||
if(level >= 50)
|
||||
value |= 0x04;
|
||||
if(level >= 70)
|
||||
value |= 0x10;
|
||||
if(level >= 80)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue