Fix WARNING: addData: Type mismatch in LLMsgVarData::addData for Set

This commit is contained in:
Aleric Inglewood
2013-05-25 22:07:50 +02:00
parent b1be8802ca
commit a8880983c4
3 changed files with 9 additions and 5 deletions

View File

@@ -4740,7 +4740,7 @@ void LLSelectMgr::packPermissions(LLSelectNode* node, void *user_data)
gMessageSystem->addU32Fast(_PREHASH_ObjectLocalID, node->getObject()->getLocalID());
gMessageSystem->addU8Fast(_PREHASH_Field, data->mField);
gMessageSystem->addBOOLFast(_PREHASH_Set, data->mSet);
gMessageSystem->addU8Fast(_PREHASH_Set, data->mSet ? PERM_SET_TRUE : PERM_SET_FALSE);
gMessageSystem->addU32Fast(_PREHASH_Mask, data->mMask);
}