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

@@ -90,7 +90,7 @@ export class MultipleObjectUpdateMessage implements MessageBase
pos += 4;
newObjObjectData['Type'] = buf.readUInt8(pos++);
varLength = buf.readUInt8(pos++);
newObjObjectData['Data'] = buf.slice(pos, pos + (varLength - 1));
newObjObjectData['Data'] = buf.slice(pos, pos + varLength);
pos += varLength;
this.ObjectData.push(newObjObjectData);
}