Fixed access emulated by synthetic accessors.

This commit is contained in:
MobiusDevelopment
2021-05-26 22:54:07 +00:00
parent 965594c906
commit b129f85e5c
82 changed files with 98 additions and 98 deletions

View File

@@ -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)
{
@@ -213,6 +213,6 @@ public final class VipManager
private static class Singleton
{
private static final VipManager INSTANCE = new VipManager();
protected static final VipManager INSTANCE = new VipManager();
}
}

View File

@@ -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)
{

View File

@@ -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)
{

View File

@@ -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);