You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ((event.getTag().equals("legacy:RedisBungee") || event.getTag().equals("RedisBungee")) && event.getSender() instanceofServer) {
Here is solution to fix it: if ((event.getTag().equals("legacy:redisbungee") || event.getTag().equals("RedisBungee")) && event.getSender() instanceof Server) {
I am reporting it because I can not use RedisBungee channel due to this error while registering channel into spigot: Channel must contain : separator (attempted to use RedisBungee)
The text was updated successfully, but these errors were encountered:
Jerimu
added a commit
to Jerimu/RedisBungee
that referenced
this issue
Feb 24, 2020
Hi, you did small mistake in your main/listener class.
You have registered:
RedisBungee/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungee.java
Line 371 in 934e454
But listening to:
RedisBungee/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungeeListener.java
Line 151 in 934e454
Here is solution to fix it:
if ((event.getTag().equals("legacy:redisbungee") || event.getTag().equals("RedisBungee")) && event.getSender() instanceof Server) {
I am reporting it because I can not use
RedisBungee
channel due to this error while registering channel into spigot:Channel must contain : separator (attempted to use RedisBungee)
The text was updated successfully, but these errors were encountered: