Skip to content

Commit 7361eaf

Browse files
committed
Update edge_fire_fly.rs
1 parent ccde87d commit 7361eaf

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

fighters/edge/src/status/edge_fire_fly.rs

+7-8
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@ use super::*;
22
use globals::*;
33
use utils::consts::vars::edge;
44

5-
#[status_script(agent = "edge", status = FIGHTER_STATUS_KIND_SPECIAL_N, condition = LUA_SCRIPT_STATUS_FUNC_STATUS_MAIN)]
6-
unsafe fn special_n_main(fighter: &mut L2CFighterCommon) -> L2CValue {
7-
println!("h");
8-
let ret = original!(fighter);
9-
WorkModule::unable_transition_term_group(fighter.module_accessor, *FIGHTER_STATUS_TRANSITION_GROUP_CHK_GROUND_ESCAPE);
10-
ret
11-
}
5+
// #[status_script(agent = "edge", status = FIGHTER_STATUS_KIND_SPECIAL_N, condition = LUA_SCRIPT_STATUS_FUNC_STATUS_MAIN)]
6+
// unsafe fn special_n_main(fighter: &mut L2CFighterCommon) -> L2CValue {
7+
// let ret = original!(fighter);
8+
// WorkModule::unable_transition_term_group(fighter.module_accessor, *FIGHTER_STATUS_TRANSITION_GROUP_CHK_GROUND_ESCAPE);
9+
// ret
10+
// }
1211

1312
#[status_script(agent = "edge_fire", status = WEAPON_EDGE_FIRE_STATUS_KIND_FLY_S, condition = LUA_SCRIPT_STATUS_FUNC_STATUS_MAIN)]
1413
unsafe fn fly_s_main(fighter: &mut L2CWeaponCommon) -> L2CValue {
@@ -105,7 +104,7 @@ unsafe extern "C" fn sub_fly(fighter: &mut L2CWeaponCommon, status: L2CValue) ->
105104

106105
pub fn install() {
107106
install_status_scripts!(
108-
special_n_main,
107+
//special_n_main,
109108
fly_s_main,
110109
fly_m_main,
111110
);

0 commit comments

Comments
 (0)