Skip to content

Commit

Permalink
Fixed the problem that placeholders didn't work.
Browse files Browse the repository at this point in the history
  • Loading branch information
VertCode committed May 4, 2021
1 parent 02fc63b commit 1f7a413
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ Simple player synchronisation solution for servers running multiple Velocity pro
### Features

---

- Player Data Sync for multiple proxies
- Player Count Sync for multiple proxies
- Alert Sync for multiple proxies
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import io.alerium.chocolate.command.constructor.CommandRegister;
import io.alerium.chocolate.config.Lang;
import io.alerium.chocolate.config.loader.EnumConfigLoader;
import io.alerium.chocolate.listener.PluginMessageListener;
import io.alerium.chocolate.listener.RedisMessageListener;
import io.alerium.chocolate.listener.StartingListener;
import io.alerium.chocolate.listener.TabCompleteListener;
Expand Down Expand Up @@ -89,6 +90,7 @@ private void loadListeners() {
this.server.getEventManager().register(this, new StartingListener());
this.server.getEventManager().register(this, new RedisMessageListener());
this.server.getEventManager().register(this, new TabCompleteListener(this));
this.server.getEventManager().register(this, new PluginMessageListener(this));
}

private void loadInstances() {
Expand Down

0 comments on commit 1f7a413

Please sign in to comment.