Skip to content

Commit

Permalink
fix(Listener): Register forgotten listener
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeV220 committed Dec 23, 2022
1 parent c07f57e commit 28b1472
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import com.georgev22.library.utilities.Utils;
import com.georgev22.library.yaml.file.FileConfiguration;
import com.georgev22.skinoverlay.handler.SkinHandler;
import com.georgev22.skinoverlay.listeners.bungee.DeveloperInformListener;
import com.georgev22.skinoverlay.listeners.bungee.PlayerListeners;
import com.georgev22.skinoverlay.utilities.BungeeCordPluginMessageUtils;
import com.georgev22.skinoverlay.utilities.Utilities;
Expand Down Expand Up @@ -80,7 +81,7 @@ protected <T> GameProfile getGameProfile0(@NotNull PlayerObject playerObject) {
}
});
SkinOverlay.getInstance().onEnable();
BungeeMinecraftUtils.registerListeners(this, new PlayerListeners());
BungeeMinecraftUtils.registerListeners(this, new PlayerListeners(), new DeveloperInformListener());
getProxy().registerChannel("skinoverlay:bungee");
enabled = true;
}
Expand Down

0 comments on commit 28b1472

Please sign in to comment.