mirror of
https://github.com/mangosfour/server.git
synced 2025-12-30 10:37:12 +00:00
Apply style fix pt3
This commit is contained in:
parent
1392c131e7
commit
d93dbd95fe
191 changed files with 9851 additions and 676 deletions
|
|
@ -292,7 +292,9 @@ class Object
|
|||
RemoveFlag(index, flag);
|
||||
}
|
||||
else
|
||||
{ SetFlag(index, flag); }
|
||||
{
|
||||
SetFlag(index, flag);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -316,7 +318,9 @@ class Object
|
|||
SetFlag(index, flag);
|
||||
}
|
||||
else
|
||||
{ RemoveFlag(index, flag); }
|
||||
{
|
||||
RemoveFlag(index, flag);
|
||||
}
|
||||
}
|
||||
|
||||
void SetByteFlag(uint16 index, uint8 offset, uint8 newFlag);
|
||||
|
|
@ -329,7 +333,9 @@ class Object
|
|||
RemoveByteFlag(index, offset, flag);
|
||||
}
|
||||
else
|
||||
{ SetByteFlag(index, offset, flag); }
|
||||
{
|
||||
SetByteFlag(index, offset, flag);
|
||||
}
|
||||
}
|
||||
|
||||
bool HasByteFlag(uint16 index, uint8 offset, uint8 flag) const
|
||||
|
|
@ -346,7 +352,9 @@ class Object
|
|||
SetByteFlag(index, offset, flag);
|
||||
}
|
||||
else
|
||||
{ RemoveByteFlag(index, offset, flag); }
|
||||
{
|
||||
RemoveByteFlag(index, offset, flag);
|
||||
}
|
||||
}
|
||||
|
||||
void SetShortFlag(uint16 index, bool highpart, uint16 newFlag);
|
||||
|
|
@ -359,7 +367,9 @@ class Object
|
|||
RemoveShortFlag(index, highpart, flag);
|
||||
}
|
||||
else
|
||||
{ SetShortFlag(index, highpart, flag); }
|
||||
{
|
||||
SetShortFlag(index, highpart, flag);
|
||||
}
|
||||
}
|
||||
|
||||
bool HasShortFlag(uint16 index, bool highpart, uint8 flag) const
|
||||
|
|
@ -375,7 +385,9 @@ class Object
|
|||
SetShortFlag(index, highpart, flag);
|
||||
}
|
||||
else
|
||||
{ RemoveShortFlag(index, highpart, flag); }
|
||||
{
|
||||
RemoveShortFlag(index, highpart, flag);
|
||||
}
|
||||
}
|
||||
|
||||
void SetFlag64(uint16 index, uint64 newFlag)
|
||||
|
|
@ -399,7 +411,9 @@ class Object
|
|||
RemoveFlag64(index, flag);
|
||||
}
|
||||
else
|
||||
{ SetFlag64(index, flag); }
|
||||
{
|
||||
SetFlag64(index, flag);
|
||||
}
|
||||
}
|
||||
|
||||
bool HasFlag64(uint16 index, uint64 flag) const
|
||||
|
|
@ -415,7 +429,9 @@ class Object
|
|||
SetFlag64(index, flag);
|
||||
}
|
||||
else
|
||||
{ RemoveFlag64(index, flag); }
|
||||
{
|
||||
RemoveFlag64(index, flag);
|
||||
}
|
||||
}
|
||||
|
||||
void ClearUpdateMask(bool remove);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue