🐞 fix(gvg): 千机阁取消解锁的时候后置节点也要取消

This commit is contained in:
luying
2023-03-15 17:18:55 +08:00
parent d6ff95fc6c
commit c13cc650d4
3 changed files with 28 additions and 12 deletions

View File

@@ -484,10 +484,10 @@ export async function pushTechChange(guildCodes: string[], isActive: boolean, id
}
}
export async function pushTechRollback(guildCodes: string[], id: number) {
export async function pushTechRollback(guildCodes: string[], ids: number[]) {
for(let guildCode of guildCodes) {
await sendMessageToGuildWithSuc(guildCode, PUSH_ROUTE.LEAGUE_TECH_ROLLBACK, {
id
ids
});
}
}