mirror of
https://github.com/Quackster/Havana.git
synced 2025-07-03 13:17:46 +00:00
Remove hotel specific code
This commit is contained in:
parent
c4da58e113
commit
f9491164eb
2 changed files with 0 additions and 9 deletions
|
@ -23,14 +23,6 @@ public class RoomManager {
|
||||||
public RoomManager() {
|
public RoomManager() {
|
||||||
this.roomMap = new ConcurrentHashMap<>();
|
this.roomMap = new ConcurrentHashMap<>();
|
||||||
this.roomEntryBadges = BadgeDao.getRoomBadges();
|
this.roomEntryBadges = BadgeDao.getRoomBadges();
|
||||||
|
|
||||||
int stoutRoomId = GameConfiguration.getInstance().getInteger("stout.room");
|
|
||||||
|
|
||||||
if (stoutRoomId > 0) {
|
|
||||||
if (!this.roomEntryBadges.containsKey(stoutRoomId)) {
|
|
||||||
this.roomEntryBadges.put(stoutRoomId, List.of("STOUT"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -137,7 +137,6 @@ public class GameConfigWriter implements ConfigWriter {
|
||||||
config.put("chat.spam.count", "10");
|
config.put("chat.spam.count", "10");
|
||||||
config.put("walk.spam.count", "10");
|
config.put("walk.spam.count", "10");
|
||||||
|
|
||||||
config.put("stout.room", "0");
|
|
||||||
config.put("messenger.enable.official.update.speed", "false");
|
config.put("messenger.enable.official.update.speed", "false");
|
||||||
|
|
||||||
for (var set : CommandManager.getCommands()) {
|
for (var set : CommandManager.getCommands()) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue