Fixed Typo in config.json (#291)

This commit is contained in:
Vampire Kitten 2024-06-11 12:56:51 +02:00 committed by GitHub
parent e660e20c87
commit 5a083f5b13
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@
"unlockAllQuests": true, "unlockAllQuests": true,
"completeAllQuests": false, "completeAllQuests": false,
"infiniteResources": true, "infiniteResources": true,
"unlockallShipFeatures": true, "unlockAllShipFeatures": true,
"unlockAllShipDecorations": true, "unlockAllShipDecorations": true,
"unlockAllFlavourItems": true, "unlockAllFlavourItems": true,
"unlockAllSkins": true, "unlockAllSkins": true,

View File

@ -31,7 +31,7 @@ export const getShipController: RequestHandler = async (req, res) => {
Apartment: personalRooms.Apartment Apartment: personalRooms.Apartment
}; };
if (config.unlockallShipFeatures) { if (config.unlockAllShipFeatures) {
getShipResponse.Ship.Features = allShipFeatures; getShipResponse.Ship.Features = allShipFeatures;
} }

View File

@ -14,7 +14,7 @@ interface IConfig {
unlockAllQuests?: boolean; unlockAllQuests?: boolean;
completeAllQuests?: boolean; completeAllQuests?: boolean;
infiniteResources?: boolean; infiniteResources?: boolean;
unlockallShipFeatures?: boolean; unlockAllShipFeatures?: boolean;
unlockAllShipDecorations?: boolean; unlockAllShipDecorations?: boolean;
unlockAllFlavourItems?: boolean; unlockAllFlavourItems?: boolean;
unlockAllSkins?: boolean; unlockAllSkins?: boolean;