Comment out dogtag generation to fix reference errors. Reuploaded as v1.2.0

This commit is contained in:
VforValens 2022-09-05 21:09:41 -04:00
parent 8b2fdec862
commit 32286b70c0
2 changed files with 5 additions and 5 deletions

@ -11,14 +11,14 @@ import { ApplicationContext } from "@spt-aki/context/ApplicationContext";
import { ContextVariableType } from "../types/context/ContextVariableType";
import {StaticRouterModService} from "@spt-aki/services/mod/staticRouter/StaticRouterModService";
import { Logger } from "./logger";
import { IPreAkiLoadMod } from "@spt-aki/models/external/IPreAkiLoadMod";
// import { IPreAkiLoadMod } from "@spt-aki/models/external/IPreAkiLoadMod";
import { Scavs } from "./scavs";
import { PMCs } from "./pmc";
import { BotGenerator } from "@spt-aki/generators/BotGenerator";
import { IBotBase } from "@spt-aki/models/eft/common/tables/IBotBase";
class ValensProgression implements IPostDBLoadMod, IPreAkiLoadMod
class ValensProgression implements IPostDBLoadMod
{
private logger: ILogger;
private configServer: ConfigServer;
@ -54,7 +54,7 @@ class ValensProgression implements IPostDBLoadMod, IPreAkiLoadMod
this.pmcs.updatePmcs();
}
public preAkiLoad(container: DependencyContainer): void
/*public preAkiLoad(container: DependencyContainer): void
{
// We will save a reference to the dependency container to resolve dependencies
// that we may need down the line
@ -167,7 +167,7 @@ class ValensProgression implements IPostDBLoadMod, IPreAkiLoadMod
bearLvl.max = 70;
bearLvl.min = 37;
}
}*/
}
module.exports = { mod: new ValensProgression() }