Skip to content
Snippets Groups Projects
Commit 114aeccb authored by Rumen Nikiforov's avatar Rumen Nikiforov
Browse files

BETA: Olympiad quests typo fix thanks jurchiks.

parent e19365e1
No related branches found
No related tags found
No related merge requests found
......@@ -22,8 +22,8 @@ import com.l2jserver.gameserver.model.quest.QuestState;
import com.l2jserver.gameserver.model.quest.State;
/**
** @author Gnacik 2011-02-04 Based on official H5 PTS server improved by
* jurchiks on Nov. 5, 2011
* @author Gnacik 2011-02-04 Based on official H5 PTS server
* improved by jurchiks on Nov. 5, 2011
*/
public class Q551_OlympiadStarter extends Quest
{
......@@ -50,7 +50,7 @@ public class Q551_OlympiadStarter extends Quest
public String onAdvEvent(final String event, final L2Npc npc, final L2PcInstance player)
{
final QuestState st = player.getQuestState(getName());
if (st == null || !st.isStarted())
if (st == null)
return super.getNoQuestMsg(player);
String htmltext = event;
......
......@@ -49,7 +49,7 @@ public class Q552_OlympiadVeteran extends Quest
public String onAdvEvent(final String event, final L2Npc npc, final L2PcInstance player)
{
final QuestState st = player.getQuestState(getName());
if (st == null || !st.isStarted())
if (st == null)
return super.getNoQuestMsg(player);
String htmltext = event;
......
......@@ -22,7 +22,7 @@ import com.l2jserver.gameserver.model.quest.QuestState;
import com.l2jserver.gameserver.model.quest.State;
/**
** @author lion 2011-02-05 Based on official H5 PTS server and 551 quest ;)
* @author lion 2011-02-05 Based on official H5 PTS server and 551 quest ;)
* improved by jurchiks on Nov. 5, 2011
*/
public class Q553_OlympiadUndefeated extends Quest
......@@ -50,7 +50,7 @@ public class Q553_OlympiadUndefeated extends Quest
public String onAdvEvent(final String event, final L2Npc npc, final L2PcInstance player)
{
final QuestState st = player.getQuestState(getName());
if (st == null || !st.isStarted())
if (st == null)
return super.getNoQuestMsg(player);
String htmltext = event;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment