mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 18:19:55 +00:00
[General] Change effectCount type to unsigned
This commit is contained in:
parent
895634cd16
commit
99158beb2e
1 changed files with 2 additions and 2 deletions
|
@ -39,13 +39,13 @@ void PacketPlayerSpellbook::Packet(RakNet::BitStream *bs, bool send)
|
|||
RW(spell.mData.mCost, send, true);
|
||||
RW(spell.mData.mFlags, send, true);
|
||||
|
||||
int effectCount = 0;
|
||||
uint32_t effectCount = 0;
|
||||
if (send)
|
||||
effectCount = spell.mEffects.mList.size();
|
||||
|
||||
RW(effectCount, send, true);
|
||||
|
||||
for (unsigned int j = 0; j < effectCount; j++)
|
||||
for (uint32_t j = 0; j < effectCount; j++)
|
||||
{
|
||||
ESM::ENAMstruct effect;
|
||||
if (send)
|
||||
|
|
Loading…
Reference in a new issue