Code style changes.

This commit is contained in:
MobiusDev
2016-04-26 19:21:19 +00:00
parent 6a13705766
commit fc070c9238
768 changed files with 3338 additions and 4252 deletions

View File

@@ -125,11 +125,11 @@ public final class Q00357_WarehouseKeepersAmbition extends Quest
String htmltext = getNoQuestMsg(talker);
if (qs.isCreated())
{
htmltext = ((talker.getLevel() < MIN_LVL) ? "30686-01.html" : "30686-02.htm");
htmltext = (talker.getLevel() < MIN_LVL) ? "30686-01.html" : "30686-02.htm";
}
else if (qs.isStarted())
{
htmltext = (hasQuestItems(talker, JADE_CRYSTAL)) ? "30686-07.html" : "30686-06.html";
htmltext = hasQuestItems(talker, JADE_CRYSTAL) ? "30686-07.html" : "30686-06.html";
}
return htmltext;
}