QuestState isNowAvailable method should not return null values as true.
This commit is contained in:
@@ -61,7 +61,7 @@ public final class BlackMarketeerOfMammon extends AbstractNpcAI
|
||||
if (player.getLevel() >= MIN_LEVEL)
|
||||
{
|
||||
final QuestState qs = getQuestState(player, true);
|
||||
if (!qs.isNowAvailable())
|
||||
if ((qs.get("restartTime") != null) && !qs.isNowAvailable())
|
||||
{
|
||||
htmltext = "31092-03.html";
|
||||
}
|
||||
|
Reference in New Issue
Block a user