|
@@ -45,6 +45,7 @@ import net.sf.l2j.gameserver.model.actor.instance.L2FestivalMonsterInstance;
|
|
|
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
|
|
|
import net.sf.l2j.gameserver.model.base.Experience;
|
|
|
import net.sf.l2j.gameserver.network.SystemMessageId;
|
|
|
+import net.sf.l2j.gameserver.network.clientpackets.Say2;
|
|
|
import net.sf.l2j.gameserver.network.serverpackets.CreatureSay;
|
|
|
import net.sf.l2j.gameserver.network.serverpackets.MagicSkillUse;
|
|
|
import net.sf.l2j.gameserver.network.serverpackets.SystemMessage;
|
|
@@ -1734,10 +1735,10 @@ public class SevenSignsFestival implements SpawnListener
|
|
|
if (_dawnChatGuide == null || _duskChatGuide == null)
|
|
|
return;
|
|
|
|
|
|
- CreatureSay cs = new CreatureSay(_dawnChatGuide.getObjectId(), 1, senderName, message);
|
|
|
+ CreatureSay cs = new CreatureSay(_dawnChatGuide.getObjectId(), Say2.SHOUT, senderName, message);
|
|
|
_dawnChatGuide.broadcastPacket(cs);
|
|
|
|
|
|
- cs = new CreatureSay(_duskChatGuide.getObjectId(), 1, senderName, message);
|
|
|
+ cs = new CreatureSay(_duskChatGuide.getObjectId(), Say2.SHOUT, senderName, message);
|
|
|
_duskChatGuide.broadcastPacket(cs);
|
|
|
}
|
|
|
|
|
@@ -2341,7 +2342,7 @@ public class SevenSignsFestival implements SpawnListener
|
|
|
{
|
|
|
if (!_participants.isEmpty())
|
|
|
{
|
|
|
- CreatureSay cs = new CreatureSay(_witchInst.getObjectId(), 0, "Festival Witch", message);
|
|
|
+ CreatureSay cs = new CreatureSay(_witchInst.getObjectId(), Say2.ALL, "Festival Witch", message);
|
|
|
|
|
|
for (L2PcInstance participant : _participants)
|
|
|
{
|