preparation for v2 launch

This commit is contained in:
Olivier Gagnon
2022-07-26 15:09:11 -04:00
parent 214b2645ad
commit e6d14eff68
7 changed files with 276 additions and 5 deletions
+7 -4
View File
@@ -84,11 +84,13 @@ export function AwardNFG(n = 1): void {
}
}
export interface IFileLine {
file: string;
line: number;
content: string;
}
export function v1APIBreak(): void {
interface IFileLine {
file: string;
line: number;
}
let txt = "";
for (const server of GetAllServers()) {
for (const change of detect) {
@@ -100,6 +102,7 @@ export function v1APIBreak(): void {
s.push({
file: script.filename,
line: i + 1,
content: "",
});
}
}