Merge pull request #48 from Alw3ys/master

Add PlayerProxy for Plugin Messaging
This commit is contained in:
Chnkr 2018-01-24 17:18:25 +01:00 committed by GitHub
commit 112fc1523d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -234,6 +234,12 @@ public class RedisBungeeListener implements Listener {
out.writeUTF("Proxy");
out.writeUTF(RedisBungee.getConfiguration().getServerId());
break;
case "PlayerProxy":
String username = in.readUTF();
out.writeUTF("PlayerProxy");
out.writeUTF(username);
out.writeUTF(RedisBungee.getApi().getProxy(plugin.getUuidTranslator().getTranslatedUuid(username, true)));
break;
default:
return;
}