Skip to content

Commit 598baa6

Browse files
committed
fixing typo
1 parent b1a0960 commit 598baa6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

base/game_events/CharSplashSweatDropsEvent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class CharSplashSweatDropsEvent extends GameEvent {
1818
times,
1919
finish_events
2020
) {
21-
super(game, data, event_types.SPLASH_SWEAT_DROPS, active, key_name, keep_reveal, keep_custom_psynergy);
21+
super(game, data, event_types.CHAR_SPLASH_SWEAT_DROPS, active, key_name, keep_reveal, keep_custom_psynergy);
2222
this.times = times;
2323
this.is_npc = is_npc;
2424
this.npc_label = npc_label;

base/game_events/GameEvent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export enum event_types {
115115
CHAR_FALL = "char_fall",
116116
SET_CHAR_HP_PP = "set_char_hp_pp",
117117
AUDIO_STOP = "audio_stop",
118-
SPLASH_SWEAT_DROPS = "splash_sweat_drops",
118+
CHAR_SPLASH_SWEAT_DROPS = "char_splash_sweat_drops",
119119
}
120120

121121
export enum game_event_misc_origin {

base/game_events/GameEventManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1364,7 +1364,7 @@ export class GameEventManager {
13641364
info.fade_out,
13651365
info.bgm_identifier
13661366
);
1367-
case event_types.SPLASH_SWEAT_DROPS:
1367+
case event_types.CHAR_SPLASH_SWEAT_DROPS:
13681368
return new CharSplashSweatDropsEvent(
13691369
this.game,
13701370
this.data,

0 commit comments

Comments
 (0)