Fix default chat room
This commit is contained in:
parent
e53a0880f1
commit
760f52df71
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ public class ChatManager {
|
|||
|
||||
if (chatRoom == null) {
|
||||
if (id.equals(defaultRoom)) {
|
||||
return new ChatRoom(defaultRoom, null, null);
|
||||
chatRoom = new ChatRoom(defaultRoom, null, null);
|
||||
} else {
|
||||
chatRoom = ChatRoomLoader.load(plugin, id);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue