Removed unused endpoint + config

This commit is contained in:
Dev 2024-07-08 15:15:48 +01:00
parent f8f0f1fdb0
commit 872212f651
5 changed files with 1 additions and 21 deletions

View File

@ -1420,6 +1420,5 @@
"mod_mount": 5,
"mod_equipment": 5
}
},
"sandboxMaxPatrolvalue": 8
}
}

View File

@ -97,11 +97,6 @@ export class InraidCallbacks
return this.httpResponse.noBody(this.inraidController.getTraitorScavHostileChance(url, sessionId));
}
public getSandboxMaxPatrolValue(url: string, info: IEmptyRequestData, sessionId: string): string
{
return this.httpResponse.noBody(this.inraidController.getSandboxMaxPatrolValue(url, sessionId));
}
public getBossConvertSettings(url: string, info: IEmptyRequestData, sessionId: string): string
{
return this.httpResponse.noBody(this.inraidController.getBossConvertSettings(url, sessionId));

View File

@ -665,11 +665,6 @@ export class InraidController
return this.inRaidConfig.playerScavHostileChancePercent;
}
public getSandboxMaxPatrolValue(url: string, sessionID: string): number
{
return this.locationConfig.sandboxMaxPatrolvalue;
}
public getBossConvertSettings(url: string, sessionId: string): string[]
{
return Object.keys(this.botConfig.assaultToBossConversion.bossesToConvertToWeights);

View File

@ -46,8 +46,6 @@ export interface ILocationConfig extends IBaseConfig
scavRaidTimeSettings: IScavRaidTimeSettings
/** Settings to adjust mods for lootable equipment in raid */
equipmentLootSettings: IEquipmentLootSettings
/** Sets the max Patrol Value of the Boxzone on the map Ground Zero */
sandboxMaxPatrolvalue: number
}
export interface IEquipmentLootSettings

View File

@ -51,13 +51,6 @@ export class InraidStaticRouter extends StaticRouter
return this.inraidCallbacks.getTraitorScavHostileChance(url, info, sessionID);
},
),
new RouteAction(
"/singleplayer/sandbox/maxpatrol",
async (url: string, info: any, sessionID: string, output: string): Promise<string> =>
{
return this.inraidCallbacks.getSandboxMaxPatrolValue(url, info, sessionID);
},
),
new RouteAction(
"/singleplayer/BossConvert",
async (url: string, info: any, sessionID: string, output: string): Promise<string> =>