Merge pull request #3327 from danielyxie/dev

Fix stanek initializing some fragment to -1-1
This commit is contained in:
hydroflame 2022-04-01 16:42:09 -04:00 committed by GitHub
commit f6c3c86b7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -28,9 +28,9 @@ export class ActiveFragment {
this.id = -1;
this.x = -1;
this.y = -1;
this.highestCharge = -1;
this.numCharge = -1;
this.rotation = -1;
this.highestCharge = 0;
this.numCharge = 0;
this.rotation = 0;
}
}