mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-03-06 10:12:36 +01:00
18 lines
596 B
Java
18 lines
596 B
Java
package com.eu.habbo.habbohotel.commands;
|
|
|
|
import com.eu.habbo.Emulator;
|
|
import com.eu.habbo.habbohotel.gameclients.GameClient;
|
|
|
|
public class UpdateGuildPartsCommand extends Command {
|
|
public UpdateGuildPartsCommand() {
|
|
super("cmd_update_guildparts", Emulator.getTexts().getValue("commands.keys.cmd_update_guildparts").split(";"));
|
|
}
|
|
|
|
@Override
|
|
public boolean handle(GameClient gameClient, String[] params) throws Exception {
|
|
Emulator.getGameEnvironment().getGuildManager().loadGuildParts();
|
|
Emulator.getBadgeImager().reload();
|
|
return true;
|
|
}
|
|
}
|