Skip to content

Commit

Permalink
Set default values
Browse files Browse the repository at this point in the history
  • Loading branch information
GospelBG committed Jul 29, 2024
1 parent 84680da commit 36dbe9e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/src/main/java/me/gosdev/chatpointsttv/ChatPointsTTV.java
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ public void onEnable() {

TwitchEventHandler.rewardBold = config.getBoolean("REWARD_NAME_BOLD");

shouldMobsGlow = config.getBoolean("MOB_GLOW");
enableAlerts = config.getBoolean("SHOW_INGAME_ALERTS");
nameSpawnedMobs = config.getBoolean("DISPLAY_NAME_ON_MOB");
shouldMobsGlow = config.getBoolean("MOB_GLOW", false);
enableAlerts = config.getBoolean("SHOW_INGAME_ALERTS", true);
nameSpawnedMobs = config.getBoolean("DISPLAY_NAME_ON_MOB", true);
chatBlacklist = config.getStringList("CHAT_BLACKLIST");

cmdController = new CommandController();
Expand Down
4 changes: 4 additions & 0 deletions core/src/main/resources/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ DISPLAY_NAME_ON_MOB: true
LOG_EVENTS: true

# Customize the in-game title.

# Toggles in-game title messages.
SHOW_INGAME_ALERTS: true

# You can use the following options:

# Colors:
Expand Down

0 comments on commit 36dbe9e

Please sign in to comment.