Skip to content

Commit

Permalink
Фикс параметра alarm.sound_play_interval
Browse files Browse the repository at this point in the history
  • Loading branch information
Genife authored and Genife committed May 2, 2023
1 parent 0914be2 commit 651a590
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class ConfigManager {
public static int BLOCKING_DURATION;

public static String ALARM_PLACE_WORD;
public static long ALARM_SOUND_PLAY_DELAY;
public static long ALARM_SOUND_PLAY_INTERVAL;


public static String MESSAGE_PREFIX;
Expand Down Expand Up @@ -178,7 +178,7 @@ private void loadValues() {
BLOCKING_DURATION = config.getInt("blocking.duration");

ALARM_PLACE_WORD = config.getString("alarm.place_word");
ALARM_SOUND_PLAY_DELAY = config.getLong("alarm.sound_play_delay");
ALARM_SOUND_PLAY_INTERVAL = config.getLong("alarm.sound_play_interval");

MESSAGE_PREFIX = config.getString("messages.prefix");
RELOAD_MESSAGE = config.getString("messages.commands.reload");
Expand Down

0 comments on commit 651a590

Please sign in to comment.