Fixed access emulated by synthetic accessors.
This commit is contained in:
@@ -94,11 +94,11 @@ public class PetInstance extends Summon
|
||||
private static final String SELECT_EVOLVED_PETS = "SELECT * FROM pet_evolves WHERE itemObjId=?";
|
||||
private static final String UPDATE_EVOLVED_PETS = "REPLACE INTO pet_evolves (`itemObjId`, `index`, `level`) VALUES (?, ?, ?)";
|
||||
|
||||
protected int _curFed;
|
||||
protected final PetInventory _inventory;
|
||||
private final boolean _mountable;
|
||||
private final int _controlObjectId;
|
||||
private final PetInventory _inventory;
|
||||
private boolean _respawned;
|
||||
private int _curFed;
|
||||
private int _petType = 0;
|
||||
private int _curWeightPenalty = 0;
|
||||
private long _expBeforeDeath = 0;
|
||||
|
||||
@@ -43,7 +43,7 @@ public final class VipManager
|
||||
|
||||
private final ConsumerEventListener _vipLoginListener = new ConsumerEventListener(null, EventType.ON_PLAYER_LOGIN, (Consumer<OnPlayerLogin>) this::onVipLogin, this);
|
||||
|
||||
private VipManager()
|
||||
protected VipManager()
|
||||
{
|
||||
if (!Config.VIP_SYSTEM_ENABLED)
|
||||
{
|
||||
@@ -203,6 +203,6 @@ public final class VipManager
|
||||
|
||||
private static class Singleton
|
||||
{
|
||||
private static final VipManager INSTANCE = new VipManager();
|
||||
protected static final VipManager INSTANCE = new VipManager();
|
||||
}
|
||||
}
|
||||
@@ -41,7 +41,7 @@ public class DamageZone extends ZoneType
|
||||
|
||||
private int _startTask;
|
||||
private int _reuseTask;
|
||||
private volatile Future<?> _task;
|
||||
protected volatile Future<?> _task;
|
||||
|
||||
public DamageZone(int id)
|
||||
{
|
||||
|
||||
@@ -43,7 +43,7 @@ public class EffectZone extends ZoneType
|
||||
protected boolean _bypassConditions;
|
||||
private boolean _isShowDangerIcon;
|
||||
protected Map<Integer, Integer> _skills;
|
||||
private volatile Future<?> _task;
|
||||
protected volatile Future<?> _task;
|
||||
|
||||
public EffectZone(int id)
|
||||
{
|
||||
|
||||
@@ -52,7 +52,7 @@ public class GameTimeTaskManager extends Thread
|
||||
private static final Set<Creature> _shadowSenseCharacters = ConcurrentHashMap.newKeySet();
|
||||
private final long _referenceTime;
|
||||
|
||||
private GameTimeTaskManager()
|
||||
protected GameTimeTaskManager()
|
||||
{
|
||||
super("GameTimeTaskManager");
|
||||
super.setDaemon(true);
|
||||
|
||||
Reference in New Issue
Block a user