chore: move skipClanKeyCrafting back to config.json
All checks were successful
Build / build (pull_request) Successful in 1m38s

This commit is contained in:
Sainan 2025-08-25 00:31:19 +02:00
parent 895e76b45e
commit 34bb7c2655
5 changed files with 4 additions and 5 deletions

View File

@ -22,6 +22,7 @@
"baroAlwaysAvailable": false,
"baroFullyStocked": false,
"unlockAllProfitTakerStages": false,
"skipClanKeyCrafting": false,
"noDojoRoomBuildStage": false,
"noDecoBuildStage": false,
"fastDojoRoomDestruction": false,

View File

@ -1451,7 +1451,6 @@ const inventorySchema = new Schema<IInventoryDatabase, InventoryDocumentProps>(
noVendorPurchaseLimits: Boolean,
noDeathMarks: Boolean,
noKimCooldowns: Boolean,
skipClanKeyCrafting: Boolean,
claimingBlueprintRefundsIngredients: Boolean,
instantResourceExtractorDrones: Boolean,
noResourceExtractorDronesDamage: Boolean,

View File

@ -30,6 +30,7 @@ export interface IConfig extends IConfigRemovedOptions {
baroAlwaysAvailable?: boolean;
baroFullyStocked?: boolean;
unlockAllProfitTakerStages?: boolean;
skipClanKeyCrafting?: boolean;
noDojoRoomBuildStage?: boolean;
noDojoDecoBuildStage?: boolean;
fastDojoRoomDestruction?: boolean;
@ -119,8 +120,7 @@ export const configRemovedOptionsKeys = [
"syndicateMissionsRepeatable",
"instantFinishRivenChallenge",
"instantResourceExtractorDrones",
"noResourceExtractorDronesDamage",
"skipClanKeyCrafting"
"noResourceExtractorDronesDamage"
] as const;
type IConfigRemovedOptions = {

View File

@ -690,7 +690,7 @@ export const checkClanAscensionHasRequiredContributors = async (guild: TGuildDat
};
export const giveClanKey = (inventory: TInventoryDatabaseDocument, inventoryChanges?: IInventoryChanges): void => {
if (inventory.skipClanKeyCrafting) {
if (config.skipClanKeyCrafting) {
const levelKeyChanges = [
{
ItemType: "/Lotus/Types/Keys/DojoKey",

View File

@ -45,7 +45,6 @@ export interface IAccountCheats {
noVendorPurchaseLimits?: boolean;
noDeathMarks?: boolean;
noKimCooldowns?: boolean;
skipClanKeyCrafting?: boolean;
claimingBlueprintRefundsIngredients?: boolean;
instantResourceExtractorDrones?: boolean;
noResourceExtractorDronesDamage?: boolean;