More protected replacements.

This commit is contained in:
MobiusDev
2016-01-29 15:32:47 +00:00
parent 9f74036626
commit c09085f2b4
14 changed files with 41 additions and 39 deletions

View File

@ -85,7 +85,7 @@ final class MentorGuide extends AbstractNpcAI implements IXmlReader
new SkillHolder(9233, 1), // Mentor's Guidance
};
protected static final SkillHolder[] MENTOR_BUFFS =
private static final SkillHolder[] MENTOR_BUFFS =
{
new SkillHolder(9256, 1), // Mentee's Appreciation;
};

View File

@ -34,7 +34,7 @@ class NpcBufferAI implements Runnable
private final L2Npc _npc;
private final NpcBufferSkillData _skillData;
protected NpcBufferAI(L2Npc npc, NpcBufferSkillData skill)
NpcBufferAI(L2Npc npc, NpcBufferSkillData skill)
{
_npc = npc;
_skillData = skill;

View File

@ -36,7 +36,7 @@ class NpcBuffersData implements IXmlReader
{
private final Map<Integer, NpcBufferData> _npcBuffers = new HashMap<>();
protected NpcBuffersData()
NpcBuffersData()
{
load();
}