1
Fork 0
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:
Quackster 2022-09-03 15:56:19 +10:00
parent c4da58e113
commit f9491164eb
2 changed files with 0 additions and 9 deletions

View file

@ -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"));
}
}
} }
/** /**

View file

@ -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()) {