Fixed quest 10363.

Contributed by Stayway.
This commit is contained in:
MobiusDev 2017-11-12 16:16:59 +00:00
parent d932bd7a9a
commit fdf42a3edf
2 changed files with 8 additions and 1 deletions

View File

@ -0,0 +1,4 @@
<html><body>Celin:<br>
Things are much better now, all thanks to you!<br>
(The quest has already been completed)
</body></html>

View File

@ -146,7 +146,10 @@ public final class Q10363_RequestOfTheSeeker extends Quest
}
case State.COMPLETED:
{
htmltext = npc.getId() == NAGEL ? "33450-07.html" : "33451-04.html";
if (npc.getId() == CELIN)
{
htmltext = "33451-03.html";
}
break;
}
}