Skip to content

Commit

Permalink
fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jjppof committed Mar 15, 2024
1 parent b1a0960 commit 598baa6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion base/game_events/CharSplashSweatDropsEvent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class CharSplashSweatDropsEvent extends GameEvent {
times,
finish_events
) {
super(game, data, event_types.SPLASH_SWEAT_DROPS, active, key_name, keep_reveal, keep_custom_psynergy);
super(game, data, event_types.CHAR_SPLASH_SWEAT_DROPS, active, key_name, keep_reveal, keep_custom_psynergy);
this.times = times;
this.is_npc = is_npc;
this.npc_label = npc_label;
Expand Down
2 changes: 1 addition & 1 deletion base/game_events/GameEvent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export enum event_types {
CHAR_FALL = "char_fall",
SET_CHAR_HP_PP = "set_char_hp_pp",
AUDIO_STOP = "audio_stop",
SPLASH_SWEAT_DROPS = "splash_sweat_drops",
CHAR_SPLASH_SWEAT_DROPS = "char_splash_sweat_drops",
}

export enum game_event_misc_origin {
Expand Down
2 changes: 1 addition & 1 deletion base/game_events/GameEventManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1364,7 +1364,7 @@ export class GameEventManager {
info.fade_out,
info.bgm_identifier
);
case event_types.SPLASH_SWEAT_DROPS:
case event_types.CHAR_SPLASH_SWEAT_DROPS:
return new CharSplashSweatDropsEvent(
this.game,
this.data,
Expand Down

0 comments on commit 598baa6

Please sign in to comment.