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", "name": "computercraft-mutil",
"version": "1.0.6", "version": "1.0.7",
"description": "", "description": "",
"license": "ISC", "license": "ISC",
"author": "", "author": "",

View File

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