mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 19:37:07 +00:00
[7584] Fixed compiler warning at windows
This commit is contained in:
parent
f38283eba6
commit
884c48d11c
2 changed files with 2 additions and 2 deletions
|
|
@ -393,7 +393,7 @@ void LoadDBCStores(const std::string& dataPath)
|
|||
continue;
|
||||
|
||||
// prevent memory corruption; otherwise cls will become 12 below
|
||||
if (! talentTabInfo->ClassMask & CLASSMASK_ALL_PLAYABLE)
|
||||
if ((talentTabInfo->ClassMask & CLASSMASK_ALL_PLAYABLE)==0)
|
||||
continue;
|
||||
|
||||
// store class talent tab pages
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue