Config for story quest buff reward.

Concept by gigilo1968.
This commit is contained in:
MobiusDev
2016-06-18 11:49:06 +00:00
parent 838e8228fa
commit 4898ba65a2
3 changed files with 10 additions and 1 deletions

View File

@ -3383,6 +3383,9 @@ public class Quest extends AbstractScript implements IIdentifiable
public void giveStoryQuestReward(L2PcInstance player, int steelDoorCoinCount)
{
giveItems(player, STEEL_DOOR_COIN, steelDoorCoinCount);
STORY_QUEST_REWARD.getSkill().applyEffects(player, player);
if (Config.ENABLE_STORY_QUEST_BUFF_REWARD)
{
STORY_QUEST_REWARD.getSkill().applyEffects(player, player);
}
}
}