From 4bbd8a94ac7ba2695363c8c48ed0c675249447e3 Mon Sep 17 00:00:00 2001 From: Spencer Date: Fri, 18 May 2018 19:32:18 -0400 Subject: [PATCH] space a brace --- .../src/mineplex/core/message/MessageManager.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Plugins/Mineplex.Core/src/mineplex/core/message/MessageManager.java b/Plugins/Mineplex.Core/src/mineplex/core/message/MessageManager.java index 4ae780974..937cca813 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/message/MessageManager.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/message/MessageManager.java @@ -611,7 +611,8 @@ public class MessageManager extends MiniClientPlugin } else { - if (_preferences.get(to).isActive(Preference.FRIEND_MESSAGES_ONLY) && (friend == null || friend.Status != FriendStatusType.Accepted)) { + if (_preferences.get(to).isActive(Preference.FRIEND_MESSAGES_ONLY) && (friend == null || friend.Status != FriendStatusType.Accepted)) + { sender.sendMessage(F.main(getName(), F.name(to.getName()) + " only allows messages from friends.")); return; }