Missed some references to "dll"

This commit is contained in:
Will Toohey 2019-11-17 21:03:44 +10:00
parent 0568ccf1ed
commit aac24b50d4

View File

@ -64,7 +64,7 @@ class StandardPatch {
} else if(status === "off") {
console.log('"' + this.name + '"', "is disabled!");
} else {
return '"' + this.name + '" is neither on nor off! Have you got the right dll?';
return '"' + this.name + '" is neither on nor off! Have you got the right file?';
}
}
@ -156,7 +156,7 @@ class UnionPatch {
return;
}
}
return '"' + this.name + '" doesn\'t have a valid patch! Have you got the right dll?';
return '"' + this.name + '" doesn\'t have a valid patch! Have you got the right file?';
}
applyPatch(file) {