Hey guys, this has been really bothering me for the past few days and I have no clue why it does not work.
I am trying to use BungeeFier to pass a voting players name down to all of the servers.
The bukkit plugin listener:
Plugin Messaging Channel
I am trying to use BungeeFier to pass a voting players name down to all of the servers.
The bukkit plugin listener:
Code (text):
@Override
public void onPluginMessageReceived(String channel, Player player, byte[] message) {
String votingPlayerName = new String(message);
Player votingPlayer = plugin.getServer().getPlayer(votingPlayerName);
if (votingPlayer == null)...
public void onPluginMessageReceived(String channel, Player player, byte[] message) {
String votingPlayerName = new String(message);
Player votingPlayer = plugin.getServer().getPlayer(votingPlayerName);
if (votingPlayer == null)...