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:
@@ -50,7 +50,7 @@ export class EdgeDataPacketMessage implements MessageBase
|
||||
newObjEdgeData['Direction'] = buf.readUInt8(pos++);
|
||||
varLength = buf.readUInt16LE(pos);
|
||||
pos += 2;
|
||||
newObjEdgeData['LayerData'] = buf.slice(pos, pos + (varLength - 1));
|
||||
newObjEdgeData['LayerData'] = buf.slice(pos, pos + varLength);
|
||||
pos += varLength;
|
||||
this.EdgeData = newObjEdgeData;
|
||||
return pos - startPos;
|
||||
|
||||
Reference in New Issue
Block a user