修复当前时机新获得技能无法发动的问题
This commit is contained in:
parent
f44fd43ad2
commit
ff8670cf3b
|
@ -2011,8 +2011,10 @@ export const Content = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
arrangeTrigger: async function (event,trigger,player) {
|
arrangeTrigger: async function (event,trigger,player) {
|
||||||
while(event.doingList.length>0){
|
const doingList = event.doingList.slice(0);
|
||||||
event.doing = event.doingList.shift();
|
|
||||||
|
while(doingList.length>0){
|
||||||
|
event.doing = doingList.shift();
|
||||||
while(true){
|
while(true){
|
||||||
if (trigger.filterStop && trigger.filterStop()) return;
|
if (trigger.filterStop && trigger.filterStop()) return;
|
||||||
const usableSkills = event.doing.todoList.filter(info => {
|
const usableSkills = event.doing.todoList.filter(info => {
|
||||||
|
|
Loading…
Reference in New Issue