Implement Parcel Dwell

This commit is contained in:
jerome
2020-08-13 18:05:08 -05:00
committed by Casper Warden
parent 79088c7eba
commit 2fec4ee685
2 changed files with 7 additions and 4 deletions

View File

@@ -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) =>

View File

@@ -29,6 +29,7 @@ export class Parcel
ClaimDate: number;
ClaimPrice: number;
Desc: string;
Dwell: number;
GroupAVSounds: boolean;
GroupID: UUID;
GroupPrims: number;