Teleports, Asset upload / download, Restructure stuff, Fix varlength read bug, BVH parser, agent initial appearance and animation glitches, LLSD + Caps + Event queue

This commit is contained in:
Casper Warden
2017-11-30 04:11:59 +00:00
parent fc6d77a893
commit d0658438b9
247 changed files with 3470 additions and 459 deletions

View File

@@ -70,7 +70,7 @@ export class SystemMessageMessage implements MessageBase
Digest: Buffer.allocUnsafe(0)
};
varLength = buf.readUInt8(pos++);
newObjMethodData['Method'] = buf.slice(pos, pos + (varLength - 1));
newObjMethodData['Method'] = buf.slice(pos, pos + varLength);
pos += varLength;
newObjMethodData['Invoice'] = new UUID(buf, pos);
pos += 16;
@@ -87,7 +87,7 @@ export class SystemMessageMessage implements MessageBase
Parameter: Buffer.allocUnsafe(0)
};
varLength = buf.readUInt8(pos++);
newObjParamList['Parameter'] = buf.slice(pos, pos + (varLength - 1));
newObjParamList['Parameter'] = buf.slice(pos, pos + varLength);
pos += varLength;
this.ParamList.push(newObjParamList);
}