Remove extraneous logging

This commit is contained in:
Alejandro 2019-12-23 15:55:50 +02:00
parent f2d8d683f2
commit 906a0c880c
2 changed files with 1 additions and 1 deletions

View File

@ -0,0 +1 @@
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.room.furni.max', '2500');

View File

@ -32,7 +32,6 @@ public class InteractionHabboClubGate extends InteractionDefault {
public boolean canWalkOn(RoomUnit roomUnit, Room room, Object[] objects) {
Habbo habbo = room.getHabbo(roomUnit);
System.out.println(habbo != null && habbo.getHabboStats().hasActiveClub());
return habbo != null && habbo.getHabboStats().hasActiveClub();
}