move varzia in confing to place where she in webui
All checks were successful
Build / build (pull_request) Successful in 1m4s

This commit is contained in:
AMelonInsideLemon 2025-08-25 11:01:18 +02:00
parent c54cd72cef
commit 70cca65a53
2 changed files with 6 additions and 6 deletions

View File

@ -46,6 +46,7 @@
"baroTennoConRelay": false,
"baroAlwaysAvailable": false,
"baroFullyStocked": false,
"varziaFullyStocked": false,
"wolfHunt": false,
"orphixVenom": false,
"longShadow": false,
@ -72,10 +73,9 @@
"duviriOverride": "",
"nightwaveOverride": "",
"allTheFissures": "",
"circuitGameModes": null,
"darvoStockMultiplier": 1,
"varziaOverride": "",
"varziaFullyStocked": false
"circuitGameModes": null,
"darvoStockMultiplier": 1
},
"dev": {
"keepVendorsExpired": false

View File

@ -55,8 +55,9 @@ export interface IConfig extends IConfigRemovedOptions {
resourceBoost?: boolean;
tennoLiveRelay?: boolean;
baroTennoConRelay?: boolean;
baroFullyStocked?: boolean;
baroAlwaysAvailable?: boolean;
baroFullyStocked?: boolean;
varziaFullyStocked?: boolean;
wolfHunt?: boolean;
orphixVenom?: boolean;
longShadow?: boolean;
@ -83,10 +84,9 @@ export interface IConfig extends IConfigRemovedOptions {
duviriOverride?: string;
nightwaveOverride?: string;
allTheFissures?: string;
varziaOverride?: string;
circuitGameModes?: string[];
darvoStockMultiplier?: number;
varziaOverride?: string;
varziaFullyStocked?: boolean;
};
dev?: {
keepVendorsExpired?: boolean;