Skip to content
This repository has been archived by the owner on Oct 12, 2024. It is now read-only.

Commit

Permalink
fix: filters, was not included since new config structure (#261)
Browse files Browse the repository at this point in the history
  • Loading branch information
djoey123 authored Aug 28, 2024
1 parent a788412 commit 45d6b24
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ public void onEnable() {
// Load config and locale files
this.loadConfig();

//load filters
this.loadFilters();

// Load discord hook
this.loadDiscordHook();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ public void onEnable() {

// Load config files
this.loadConfig();

//load filters
this.loadFilters();

// Load API
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ public VelocityHuskChat(@NotNull ProxyServer server, @NotNull org.slf4j.Logger l
public void onProxyInitialization(@NotNull ProxyInitializeEvent event) {
// Load config and locale files
this.loadConfig();

//load filters
this.loadFilters();

// Load discord hook
this.loadDiscordHook();
Expand Down

0 comments on commit 45d6b24

Please sign in to comment.