Show player joins message in chat window only, if player isn't already connected. Suppres posting of empty strings in the chat window.

This commit is contained in:
LevelX2 2013-03-17 23:44:45 +01:00
parent 0cedc155ae
commit e52c35fec9

View file

@ -56,7 +56,7 @@ public class ChatSession {
public void join(UUID userId) {
User user = UserManager.getInstance().getUser(userId);
if (user != null) {
if (user != null && !clients.containsKey(userId)) {
String userName = user.getName();
clients.put(userId, userName);
broadcast(userName, " has joined", MessageColor.BLACK);
@ -74,6 +74,7 @@ public class ChatSession {
}
public void broadcast(String userName, String message, MessageColor color) {
if (!message.isEmpty()) {
Calendar cal = new GregorianCalendar();
final String msg = message;
final String time = timeFormatter.format(cal.getTime());
@ -87,6 +88,7 @@ public class ChatSession {
kill(userId);
}
}
}
/**
* @return the chatId