From 906a0c880cd690f35c788aba99e713b562b35e45 Mon Sep 17 00:00:00 2001 From: Alejandro <25-alejandro@users.noreply.git.krews.org> Date: Mon, 23 Dec 2019 15:55:50 +0200 Subject: [PATCH] Remove extraneous logging --- sqlupdates/2_2_0-RC-2_TO_2_2_0-RC-3.sql | 1 + .../habbohotel/items/interactions/InteractionHabboClubGate.java | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 sqlupdates/2_2_0-RC-2_TO_2_2_0-RC-3.sql diff --git a/sqlupdates/2_2_0-RC-2_TO_2_2_0-RC-3.sql b/sqlupdates/2_2_0-RC-2_TO_2_2_0-RC-3.sql new file mode 100644 index 00000000..cbb9ce33 --- /dev/null +++ b/sqlupdates/2_2_0-RC-2_TO_2_2_0-RC-3.sql @@ -0,0 +1 @@ +INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.room.furni.max', '2500'); \ No newline at end of file diff --git a/src/main/java/com/eu/habbo/habbohotel/items/interactions/InteractionHabboClubGate.java b/src/main/java/com/eu/habbo/habbohotel/items/interactions/InteractionHabboClubGate.java index 95c0c496..f9aa57dc 100644 --- a/src/main/java/com/eu/habbo/habbohotel/items/interactions/InteractionHabboClubGate.java +++ b/src/main/java/com/eu/habbo/habbohotel/items/interactions/InteractionHabboClubGate.java @@ -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(); }