File tree Expand file tree Collapse file tree 3 files changed +8
-11
lines changed Expand file tree Collapse file tree 3 files changed +8
-11
lines changed Original file line number Diff line number Diff line change 1
1
// / @description Insert description here
2
2
// You can write your code in this editor
3
- global.version_real = 1.09 ;
3
+ global.version_real = 1.10 ;
4
4
global.version = " Release " +string(global.version_real);
5
5
global.beta_tester = 0 ;
6
6
global.streamer = 0 ;
Original file line number Diff line number Diff line change @@ -357,14 +357,11 @@ if (global.b_alpha < 0.1 && global.t_b_alpha <= 0 && global.t_b_alpha != -0.02 &
357
357
global.unlocked_music_name_new_list_color [check_new_song] = c_white;
358
358
check_new_song ++;
359
359
360
-
361
- global.unlocked_music_name_new_list [check_new_song] = " 개발 예정 곡 변경 (Kinmokusei 금목서 -> Fire Again)" ;
362
- check_new_song ++;
363
-
364
- global.unlocked_music_name_new_list [check_new_song] = " 명예의 전당 랭크 시스템 변경 (각 난이도별 점수 -> 모든 난이도 점수 합산)" ;
360
+
361
+ global.unlocked_music_name_new_list [check_new_song] = " 대쉬 쿨타임 관련 버그 수정" ;
365
362
check_new_song ++;
366
363
367
- global.unlocked_music_name_new_list [check_new_song] = " 커스텀 맵 탄막 이미지 변경 메시지 관련 일부 사항 수정" ;
364
+ global.unlocked_music_name_new_list [check_new_song] = " 이외의 잡다한 버그 수정" ;
368
365
check_new_song ++;
369
366
370
367
global.unlocked_music_name_new_list [check_new_song] = " (이외에 제보 주신 버그들은 수정 중에 있습니다!)" ;
Original file line number Diff line number Diff line change 1
1
// / @description Movement - Dashing
2
2
// You can write your code in this editor
3
3
w_alpha = 5
4
- global.dashed = 1
4
+ global.dashed = 1 ;
5
5
6
6
7
- n_max_map_speed = (global.map_speed > global.map_speed_y) ? global.map_speed : global.map_speed_y
7
+ n_max_map_speed = (global.map_speed > global.map_speed_y) ? global.map_speed : global.map_speed_y;
8
8
n_max_map_speed = (n_max_map_speed > 28 ) ? 28 : n_max_map_speed;
9
- global.dashing = 1
9
+ global.dashing = 1 ;
10
10
var tmp = (3600 /global.bpm);
11
11
tmp = (tmp <= 20 ) ? tmp*2 : tmp;
12
- global.dash_cooltime = fix_num_inside(tmp+20 -global.dash_dec_c_time-n_max_map_speed* 0.4 , 15 ,999 );
12
+ global.dash_cooltime = fix_num_inside(tmp+20 -global.dash_dec_c_time-n_max_map_speed,tmp- 5 ,999 );
13
13
14
14
var inv_cooltime = global.dash_cooltime-10 ;
15
15
// show_message_log(inv_cooltime)
You can’t perform that action at this time.
0 commit comments