mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 15:20:52 +01:00
Merge branch 'patch-4' into 'master'
Verify the length of desc & name of the group See merge request morningstar/Arcturus-Community!274
This commit is contained in:
commit
d22bbf2298
@ -5,6 +5,7 @@ import com.eu.habbo.habbohotel.guilds.Guild;
|
||||
import com.eu.habbo.habbohotel.permissions.Permission;
|
||||
import com.eu.habbo.habbohotel.rooms.Room;
|
||||
import com.eu.habbo.messages.incoming.MessageHandler;
|
||||
import com.eu.habbo.messages.outgoing.guilds.GuildEditFailComposer;
|
||||
import com.eu.habbo.plugin.events.guilds.GuildChangedNameEvent;
|
||||
|
||||
public class GuildChangeNameDescEvent extends MessageHandler {
|
||||
@ -19,6 +20,15 @@ public class GuildChangeNameDescEvent extends MessageHandler {
|
||||
GuildChangedNameEvent nameEvent = new GuildChangedNameEvent(guild, this.packet.readString(), this.packet.readString());
|
||||
Emulator.getPluginManager().fireEvent(nameEvent);
|
||||
|
||||
if(nameEvent.name.length() > 29){
|
||||
this.client.sendResponse(new GuildEditFailComposer(GuildEditFailComposer.INVALID_GUILD_NAME));
|
||||
return;
|
||||
}
|
||||
|
||||
if(nameEvent.description.length() > 254){
|
||||
return;
|
||||
}
|
||||
|
||||
if (nameEvent.isCancelled())
|
||||
return;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user