This commit is contained in:
雪风 2025-06-05 21:49:54 +08:00
parent 696ec96a5f
commit 37e5b11173
1 changed files with 4 additions and 1 deletions

View File

@ -2712,7 +2712,10 @@ public abstract class AbstractPlayerInteraction {
public void itemlaba(final String name, final String txt, final Item item, final int labaid) {
if (labaid == 16) {
Broadcast.broadcastSmega(MaplePacketCreator.itemMegaphone(name + " : " + txt, true, this.c.getChannel(), item.copy()));
} else {
} else if(labaid == 15){
Broadcast.broadcastMessage(MaplePacketCreator.getGachaponMega2(name, txt, item, (byte) 14));
}else
{
Broadcast.broadcastMessage(MaplePacketCreator.getItemMega(this.getPlayer().getClient().getChannel(), name + " : " + txt, item, true));
}
}