File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,6 @@ unsafe fn escape_air_game(fighter: &mut L2CAgentBase) {
190
190
unsafe fn escape_air_slide_game ( fighter : & mut L2CAgentBase ) {
191
191
let lua_state = fighter. lua_state_agent ;
192
192
let boma = fighter. boma ( ) ;
193
-
194
193
frame ( lua_state, 29.0 ) ;
195
194
if is_excute ( fighter) {
196
195
WorkModule :: on_flag ( boma, * FIGHTER_STATUS_ESCAPE_AIR_FLAG_SLIDE_ENABLE_CONTROL ) ;
@@ -201,6 +200,12 @@ unsafe fn escape_air_slide_game(fighter: &mut L2CAgentBase) {
201
200
}
202
201
}
203
202
203
+ #[ acmd_script( agent = "trail" , script = "sound_run" , category = ACMD_SOUND , low_priority) ]
204
+ unsafe fn run_sound ( fighter : & mut L2CAgentBase ) {
205
+ let lua_state = fighter. lua_state_agent ;
206
+ let boma = fighter. boma ( ) ;
207
+ }
208
+
204
209
pub fn install ( ) {
205
210
install_acmd_scripts ! (
206
211
escape_air_game,
@@ -212,6 +217,7 @@ pub fn install() {
212
217
damageflylw_sound,
213
218
damageflyn_sound,
214
219
damageflyroll_sound,
215
- damageflytop_sound
220
+ damageflytop_sound,
221
+ run_sound,
216
222
) ;
217
223
}
You can’t perform that action at this time.
0 commit comments