From f9ead087463dc06cacabc2122d70aa6b28aa6dd1 Mon Sep 17 00:00:00 2001 From: Sainan Date: Fri, 14 Mar 2025 19:12:22 +0100 Subject: [PATCH] chore: set HWIDProtectEnabled so trading post can be used --- src/controllers/api/inventoryController.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/controllers/api/inventoryController.ts b/src/controllers/api/inventoryController.ts index acb7d2cd..4b7dfe28 100644 --- a/src/controllers/api/inventoryController.ts +++ b/src/controllers/api/inventoryController.ts @@ -228,6 +228,9 @@ export const getInventoryResponse = async ( // Omitting this field so opening the navigation resyncs the inventory which is more desirable for typical usage. //inventoryResponse.LastInventorySync = toOid(new Types.ObjectId()); + // Set 2FA enabled so trading post can be used + inventoryResponse.HWIDProtectEnabled = true; + return inventoryResponse; };