返回提交历史
Modified
src/controllers/api/removeFromGuildController.ts
+1
-1
XFEstudio/XFESpaceNinjaServer
fix: remove clan key blueprint when removed from guild
8cdcb209
代码差异
1 个文件
+1
-1
@@ -29,7 +29,7 @@ export const removeFromGuildController: RequestHandler = async (req, res) => {
29
29
} else {
30
30
const recipeIndex = inventory.Recipes.findIndex(x => x.ItemType == "/Lotus/Types/Keys/DojoKeyBlueprint");
31
31
if (recipeIndex != -1) {
32
inventory.Recipes.splice(itemIndex, 1);
32
inventory.Recipes.splice(recipeIndex, 1);
33
33
}
34
34
}
35
35