Migrate from tslint to eslint (will tighten rules in further commits)

This commit is contained in:
Casper Warden
2021-09-23 17:14:23 +01:00
parent 2c4833baf7
commit bc6ee025cf
121 changed files with 3185 additions and 2863 deletions

View File

@@ -73,7 +73,7 @@ export class SetStartLocationMessage implements MessageBase
pos += 16;
newObjStartLocationData['LocationID'] = buf.readUInt32LE(pos);
pos += 4;
newObjStartLocationData['RegionHandle'] = new Long(buf.readInt32LE(pos), buf.readInt32LE(pos+4));
newObjStartLocationData['RegionHandle'] = new Long(buf.readInt32LE(pos), buf.readInt32LE(pos + 4));
pos += 8;
newObjStartLocationData['LocationPos'] = new Vector3(buf, pos, false);
pos += 12;