remove default clan "grim"

This commit is contained in:
RedSparr0w 2019-11-06 13:55:21 +13:00
parent 4f12448e10
commit 5bc054752d
4 changed files with 1 additions and 3 deletions

View file

@ -152,7 +152,7 @@ public final class CommunicationInfo {
statement.setString(3, contacts);
statement.setString(4, blocked);
statement.setString(5, clanName);
statement.setString(6, currentClan == null ? "grim" : currentClan);
statement.setString(6, currentClan);
statement.setString(7, joinRequirement.ordinal() + "," + messageRequirement.ordinal() + "," + kickRequirement.ordinal() + "," + lootRequirement.ordinal());
statement.setString(8, publicChatSetting + "," + privateChatSetting + "," + tradeSetting);
}

View file

@ -379,8 +379,6 @@ public final class MSPacketRepository {
if (buffer.get() == 1) {
String name = buffer.getString();
sendJoinClan(player, name);
} else {
sendJoinClan(player, "keldagrim");
}
}