fix projection missing Settings
All checks were successful
Build / build (18) (push) Successful in 51s
Build / build (20) (push) Successful in 1m11s
Build / build (18) (pull_request) Successful in 50s
Build / build (22) (push) Successful in 1m12s
Build / build (20) (pull_request) Successful in 1m12s
Build / build (22) (pull_request) Successful in 46s

This commit is contained in:
Sainan 2025-03-27 12:48:59 +01:00
parent 213ff8ed83
commit aab8411246

View File

@ -21,7 +21,7 @@ export const giftingController: RequestHandler = async (req, res) => {
res.status(400).send("9").end(); res.status(400).send("9").end();
return; return;
} }
const inventory = await getInventory(account._id.toString(), "Suits"); const inventory = await getInventory(account._id.toString(), "Suits Settings");
// Cannot gift items to players that have not completed the tutorial. // Cannot gift items to players that have not completed the tutorial.
if (inventory.Suits.length == 0) { if (inventory.Suits.length == 0) {