Remove unauthenticated chat recipients

only authenticated players can see the chat
This commit is contained in:
DNx5 2015-11-26 07:03:22 +07:00
parent e15c5fcb9c
commit 0601ab0e40
2 changed files with 6 additions and 6 deletions

View File

@ -59,8 +59,8 @@ public class AuthMePlayerListener implements Listener {
private void handleChat(AsyncPlayerChatEvent event) {
Player player = event.getPlayer();
for (Player p : Utils.getOnlinePlayers()) {
if (p != player && !PlayerCache.getInstance().isAuthenticated(p.getName())) {
event.getRecipients().remove(p);
if (!PlayerCache.getInstance().isAuthenticated(p.getName())) {
event.getRecipients().remove(p); // TODO: it should be configurable
}
}

View File

@ -139,7 +139,7 @@ public final class Utils {
}
if (!Settings.isForcedRegistrationEnabled) {
// TODO ljacqu 20151123: Use a setter to retrieve things from AuthMe
// TODO ljacqu 20151123: Use a getter to retrieve things from AuthMe
if (!plugin.database.isAuthAvailable(player.getName())) {
return true;
}
@ -162,16 +162,16 @@ public final class Utils {
* @param w String
* @param pl Player
*/
public static void packCoords(double x, double y, double z, String w,
final Player pl) {
public static void packCoords(double x, double y, double z, String w, final Player pl) {
World theWorld;
if (w.equals("unavailableworld")) {
theWorld = pl.getWorld();
} else {
theWorld = Bukkit.getWorld(w);
}
if (theWorld == null)
if (theWorld == null) {
theWorld = pl.getWorld();
}
final World world = theWorld;
final Location loc = new Location(world, x, y, z);