Skip to content

Commit 8c361f8

Browse files
committed
maybe fix arsene recall bug?
1 parent 7f6520d commit 8c361f8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

fighters/jack/src/status/dispatch.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,9 @@ unsafe extern "C" fn dispatch_main_loop(fighter: &mut L2CFighterCommon) -> L2CVa
8181
FIGHTER_STATUS_KIND_WAIT
8282
};
8383
fighter.change_status(status.into(), false.into());
84+
return 1.into();
8485
}
85-
0.into()
86+
return 0.into();
8687
}
8788

8889
pub fn install(agent: &mut Agent) {

fighters/jack/src/status/summon.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,9 @@ unsafe extern "C" fn summon_main_loop(fighter: &mut L2CFighterCommon) -> L2CValu
8989
FIGHTER_STATUS_KIND_WAIT
9090
};
9191
fighter.change_status(status.into(), false.into());
92+
return 1.into();
9293
}
93-
0.into()
94+
return 0.into();
9495
}
9596

9697
pub fn install(agent: &mut Agent) {

0 commit comments

Comments
 (0)