24 lines
883 B
Java
Raw Normal View History

2018-07-06 13:30:00 +00:00
package com.eu.habbo.habbohotel.commands;
import com.eu.habbo.Emulator;
import com.eu.habbo.habbohotel.gameclients.GameClient;
import com.eu.habbo.habbohotel.rooms.Room;
import com.eu.habbo.habbohotel.rooms.RoomChatMessageBubbles;
2019-05-26 21:14:53 +03:00
public class RoomMuteCommand extends Command {
public RoomMuteCommand() {
2018-07-06 13:30:00 +00:00
super("cmd_roommute", Emulator.getTexts().getValue("commands.keys.cmd_roommute").split(";"));
}
@Override
2019-05-26 21:14:53 +03:00
public boolean handle(GameClient gameClient, String[] params) throws Exception {
2018-07-06 13:30:00 +00:00
Room room = gameClient.getHabbo().getHabboInfo().getCurrentRoom();
2019-05-26 21:14:53 +03:00
if (room != null) {
2018-07-06 13:30:00 +00:00
room.setMuted(!room.isMuted());
gameClient.getHabbo().whisper(Emulator.getTexts().getValue("commands.succes.cmd_roommute." + (room.isMuted() ? "muted" : "unmuted")), RoomChatMessageBubbles.ALERT);
}
return true;
}
}