fix: build
This commit is contained in:
@@ -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": "",
|
||||||
|
|||||||
@@ -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));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user