diff --git a/lib/classes/commands/GridCommands.ts b/lib/classes/commands/GridCommands.ts index 69581d0..5b3ad52 100644 --- a/lib/classes/commands/GridCommands.ts +++ b/lib/classes/commands/GridCommands.ts @@ -180,10 +180,12 @@ export class GridCommands extends CommandsBase { responseMsg2.Data.forEach((data) => { - response.avatars.push(new Vector2([ - data.X, - data.Y - ])); + for (let index = 0; index <= data.Extra; index++) { + response.avatars.push(new Vector2([ + data.X, + data.Y + ])); + } }); resolve(response); }).catch((err) => diff --git a/lib/classes/public/Parcel.ts b/lib/classes/public/Parcel.ts index 0e5d679..eb08fbe 100644 --- a/lib/classes/public/Parcel.ts +++ b/lib/classes/public/Parcel.ts @@ -29,6 +29,7 @@ export class Parcel ClaimDate: number; ClaimPrice: number; Desc: string; + Dwell: number; GroupAVSounds: boolean; GroupID: UUID; GroupPrims: number;