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

XFESpaceNinjaServer

A simple server for a small space ninja game

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

XFEstudio/XFESpaceNinjaServer

chore: update skipAllDialogue for some U8.3 stuff (#3389)

To skip yapping after first login & first time visiting Foundry. Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/3389 Reviewed-by: Sainan <63328889+sainan@users.noreply.github.com> Co-authored-by: Animan8000 <187183497+Veniman8000@users.noreply.github.com> Co-committed-by: Animan8000 <187183497+Veniman8000@users.noreply.github.com>

e0865e57
Animan8000 <187183497+Veniman8000@users.noreply.github.com>
提交于

代码差异

1 个文件 +12 -0
Modified src/controllers/api/inventoryController.ts +12 -0
@@ -339,6 +339,18 @@ export const getInventoryResponse = async (
339 339 state: "TS_COMPLETED"
340 340 });
341 341 }
342 if (!inventoryResponse.TauntHistory.find(x => x.node == "StarchartTutorial")) {
343 inventoryResponse.TauntHistory.push({
344 node: "StarchartTutorial",
345 state: "TS_COMPLETED"
346 });
347 }
348 if (!inventoryResponse.TauntHistory.find(x => x.node == "CraftingTutorial")) {
349 inventoryResponse.TauntHistory.push({
350 node: "CraftingTutorial",
351 state: "TS_COMPLETED"
352 });
353 }
342 354 for (const str of allDialogue) {
343 355 addString(inventoryResponse.NodeIntrosCompleted, str);
344 356 }