Removed simulated onTalk method.

This commit is contained in:
MobiusDev
2017-08-09 00:11:10 +00:00
parent af0ea3c255
commit a35d8a82c3
103 changed files with 677 additions and 1053 deletions

View File

@@ -289,14 +289,14 @@ public final class EvilIncubator extends AbstractInstance
}
@Override
public String onTalk(L2Npc npc, L2PcInstance player, boolean isSimulated)
public String onTalk(L2Npc npc, L2PcInstance player)
{
String htmltext = getNoQuestMsg(player);
final QuestState st = getQuestState(player);
if ((st == null) || !st.isStarted())
{
return super.onTalk(npc, player, isSimulated);
return super.onTalk(npc, player);
}
if (st.getState() == State.STARTED)