返回提交历史
Modified
src/controllers/api/hubBlessingController.ts
+1
-1
XFEstudio/SpaceNinjaServer
chore: note
c47a29ec
代码差异
1 个文件
+1
-1
@@ -12,7 +12,7 @@ export const hubBlessingController: RequestHandler = async (req, res) => {
12
12
if (req.query.mode == "send") {
13
13
const inventory = await getInventory(accountId, "BlessingCooldown Boosters");
14
14
inventory.BlessingCooldown = new Date(Date.now() + 86400000);
15
addBooster(boosterType, 3 * 3600, inventory);
15
addBooster(boosterType, 3 * 3600, inventory); // unfaithful, but current HUB server does not handle broadcasting, so this way users can bless themselves.
16
16
await inventory.save();
17
17
18
18
let token = "";