QuestTimer calls in onTalk may need !isSimulatingTalking check.

This commit is contained in:
MobiusDevelopment
2020-01-23 00:43:03 +00:00
parent 25c71b6817
commit 9b320e4cfe

View File

@@ -172,8 +172,11 @@ public class Q11031_TrainingBeginsNow extends Quest
{ {
if (qs.isCond(1)) if (qs.isCond(1))
{ {
startQuestTimer("reward_shots", 100, npc, player); if (!player.isSimulatingTalking())
player.sendPacket(new ExTutorialShowId(14)); // Soulshots and Spiritshots {
startQuestTimer("reward_shots", 100, npc, player);
player.sendPacket(new ExTutorialShowId(14)); // Soulshots and Spiritshots
}
htmltext = "34505-04.html"; htmltext = "34505-04.html";
} }
else else