More protected replacements.
This commit is contained in:
@ -60,7 +60,7 @@ final class BeastFarm extends AbstractNpcAI
|
||||
18872
|
||||
};
|
||||
private static final int TAME_CHANCE = 20;
|
||||
protected static final int[] SPECIAL_SPICE_CHANCES =
|
||||
static final int[] SPECIAL_SPICE_CHANCES =
|
||||
{
|
||||
33,
|
||||
75
|
||||
|
@ -38,7 +38,7 @@ import ai.npc.AbstractNpcAI;
|
||||
final class DenOfEvil extends AbstractNpcAI
|
||||
{
|
||||
// private static final int _buffer_id = 32656;
|
||||
protected static final int[] EYE_IDS =
|
||||
static final int[] EYE_IDS =
|
||||
{
|
||||
18812,
|
||||
18813,
|
||||
|
@ -56,7 +56,7 @@ final class PolymorphingOnAttack extends AbstractNpcAI
|
||||
MOBSPAWNS.put(21537, Arrays.asList(21538, 100, 30, -1)); // Fang of Splendor
|
||||
}
|
||||
|
||||
protected static final NpcStringId[][] MOBTEXTS =
|
||||
private static final NpcStringId[][] MOBTEXTS =
|
||||
{
|
||||
new NpcStringId[]
|
||||
{
|
||||
|
@ -105,22 +105,22 @@ final class SelMahumDrill extends AbstractNpcAI
|
||||
_repeatInterval = repeatInterval;
|
||||
}
|
||||
|
||||
protected int getSocialActionId()
|
||||
int getSocialActionId()
|
||||
{
|
||||
return _socialActionId;
|
||||
}
|
||||
|
||||
protected int getAltSocialActionId()
|
||||
int getAltSocialActionId()
|
||||
{
|
||||
return _altSocialActionId;
|
||||
}
|
||||
|
||||
protected int getRepeatCount()
|
||||
int getRepeatCount()
|
||||
{
|
||||
return _repeatCount;
|
||||
}
|
||||
|
||||
protected int getRepeatInterval()
|
||||
int getRepeatInterval()
|
||||
{
|
||||
return _repeatInterval;
|
||||
}
|
||||
|
Reference in New Issue
Block a user