diff --git a/package.json b/package.json index d0df97c..64d02e3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "computercraft-mutil", - "version": "1.0.6", + "version": "1.0.7", "description": "", "license": "ISC", "author": "", diff --git a/src/multi-pid.ts b/src/multi-pid.ts index daee9f1..fd791b6 100644 --- a/src/multi-pid.ts +++ b/src/multi-pid.ts @@ -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)); } }