fix: build

This commit is contained in:
2025-06-07 16:17:49 +09:00
parent 9e1f4b8871
commit de32b117f7
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "computercraft-mutil",
"version": "1.0.6",
"version": "1.0.7",
"description": "",
"license": "ISC",
"author": "",

View File

@@ -9,7 +9,7 @@ export class MultiPID {
public constructor(channels: number, params: PIDParameters) {
this.channels = channels;
this.pids = [];
for (var i = 0; i < channels; i++) {
for (let i = 0; i < channels; i++) {
this.pids.push(new PID(params));
}
}