mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-09 05:54:50 +02:00
Added completed quest sendback.
This commit is contained in:
parent
306f4ef346
commit
c677479a03
6 changed files with 35 additions and 24 deletions
|
@ -176,11 +176,17 @@ namespace Meteor.Common
|
|||
srcShiftIndx = 0;
|
||||
destByteIndx++;
|
||||
i += 8;
|
||||
continue;
|
||||
}
|
||||
|
||||
bool val = (Data[srcByteIndx] & (1 << srcShiftIndx)) != 0;
|
||||
bool val = (Data[srcByteIndx] & (1 << srcShiftIndx++)) != 0;
|
||||
|
||||
curByte |= (byte)((val ? 1 : 0) << destShiftIndx++);
|
||||
if (srcShiftIndx == 8)
|
||||
{
|
||||
srcShiftIndx = 0;
|
||||
srcByteIndx++;
|
||||
}
|
||||
if (destShiftIndx == 8)
|
||||
{
|
||||
toReturn[destByteIndx++] = curByte;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue