Skip to content

Commit

Permalink
fixed the placeholder api problem
Browse files Browse the repository at this point in the history
  • Loading branch information
ham1255 committed May 20, 2021
1 parent 373e1c1 commit 39b3c03
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public void onPing(final ProxyPingEvent event) {

@EventHandler
public void onPluginMessage(final PluginMessageEvent event) {
if ((event.getTag().equals("legacy:RedisBungee") || event.getTag().equals("RedisBungee")) && event.getSender() instanceof Server) {
if ((event.getTag().equals("legacy:redisbungee") || event.getTag().equals("RedisBungee")) && event.getSender() instanceof Server) {
final String currentChannel = event.getTag();
final byte[] data = Arrays.copyOf(event.getData(), event.getData().length);
plugin.getProxy().getScheduler().runAsync(plugin, new Runnable() {
Expand Down

0 comments on commit 39b3c03

Please sign in to comment.