XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

SpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 1 Star 0
返回提交历史

XFEstudio/SpaceNinjaServer

chore: update PE+, add countedAtt to key chain triggered messages (#959)

Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/959 Co-authored-by: Sainan <sainan@calamity.inc> Co-committed-by: Sainan <sainan@calamity.inc>

c8542c9d
Sainan <sainan@calamity.inc>
提交于

代码差异

3 个文件 +6 -5
Modified package-lock.json +4 -4
@@ -12,7 +12,7 @@
12 12 "copyfiles": "^2.4.1",
13 13 "express": "^5",
14 14 "mongoose": "^8.9.4",
15 "warframe-public-export-plus": "^0.5.29",
15 "warframe-public-export-plus": "^0.5.30",
16 16 "warframe-riven-info": "^0.1.2",
17 17 "winston": "^3.17.0",
18 18 "winston-daily-rotate-file": "^5.0.0"
@@ -4093,9 +4093,9 @@
4093 4093 }
4094 4094 },
4095 4095 "node_modules/warframe-public-export-plus": {
4096 "version": "0.5.29",
4097 "resolved": "https://registry.npmjs.org/warframe-public-export-plus/-/warframe-public-export-plus-0.5.29.tgz",
4098 "integrity": "sha512-D61CFiJTr/LIQCvyZ03DgudUBpJDqrOTdNPNeB0kY21lmPHw1auDg4CNW2T1JaG0nL5K1hu9ypvnfXzno2omMA=="
4096 "version": "0.5.30",
4097 "resolved": "https://registry.npmjs.org/warframe-public-export-plus/-/warframe-public-export-plus-0.5.30.tgz",
4098 "integrity": "sha512-vzs+naEqp3iFZTbgIky4jiNbjNIovuR4oSimrFiuyIbrnfTlfXFzDfzT0hG2rgS8yEXBAbOcv2Zfm3fmWuZ0Kg=="
4099 4099 },
4100 4100 "node_modules/warframe-riven-info": {
4101 4101 "version": "0.1.2",
Modified package.json +1 -1
@@ -17,7 +17,7 @@
17 17 "copyfiles": "^2.4.1",
18 18 "express": "^5",
19 19 "mongoose": "^8.9.4",
20 "warframe-public-export-plus": "^0.5.29",
20 "warframe-public-export-plus": "^0.5.30",
21 21 "warframe-riven-info": "^0.1.2",
22 22 "winston": "^3.17.0",
23 23 "winston-daily-rotate-file": "^5.0.0"
Modified src/controllers/api/giveKeyChainTriggeredMessageController.ts +1 -0
@@ -18,6 +18,7 @@ export const giveKeyChainTriggeredMessageController: RequestHandler = async (req
18 18 msg: keyChainMessage.body,
19 19 sub: keyChainMessage.title,
20 20 att: keyChainMessage.attachments.length > 0 ? keyChainMessage.attachments : undefined,
21 countedAtt: keyChainMessage.countedAttachments.length > 0 ? keyChainMessage.countedAttachments : undefined,
21 22 icon: keyChainMessage.icon ?? "",
22 23 transmission: keyChainMessage.transmission ?? "",
23 24 highPriority: keyChainMessage.highPriority ?? false,