diff --git a/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 204e874132..eb141f1bc6 100644 --- a/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -496,7 +496,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4084,7 +4084,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8164,7 +8164,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9251,12 +9251,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_2.5_Underground/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_2.5_Underground/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index ca5cee90e9..5fd19c986b 100644 --- a/L2J_Mobius_2.5_Underground/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_2.5_Underground/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -498,7 +498,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4090,7 +4090,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8171,7 +8171,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9258,12 +9258,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_3.0_Helios/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_3.0_Helios/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 0d6d67f149..934338438d 100644 --- a/L2J_Mobius_3.0_Helios/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_3.0_Helios/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -500,7 +500,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4092,7 +4092,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8173,7 +8173,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9260,12 +9260,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_4.0_GrandCrusade/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_4.0_GrandCrusade/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 3ed923d5d5..e9a56a3be8 100644 --- a/L2J_Mobius_4.0_GrandCrusade/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_4.0_GrandCrusade/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -504,7 +504,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4088,7 +4088,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8168,7 +8168,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9255,12 +9255,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_5.0_Salvation/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_5.0_Salvation/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 444b58049a..2ca7db9dbb 100644 --- a/L2J_Mobius_5.0_Salvation/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_5.0_Salvation/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -502,7 +502,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4067,7 +4067,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8147,7 +8147,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9242,12 +9242,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_5.5_EtinasFate/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_5.5_EtinasFate/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 9758dba693..b51815034b 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_5.5_EtinasFate/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -502,7 +502,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4067,7 +4067,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8147,7 +8147,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9242,12 +9242,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_6.0_Fafurion/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_6.0_Fafurion/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index fab883d185..d6871ea1b1 100644 --- a/L2J_Mobius_6.0_Fafurion/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_6.0_Fafurion/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -502,7 +502,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4068,7 +4068,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8148,7 +8148,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9243,12 +9243,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_7.0_PreludeOfWar/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_7.0_PreludeOfWar/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 5acf7b0ffe..2e3bab9940 100644 --- a/L2J_Mobius_7.0_PreludeOfWar/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_7.0_PreludeOfWar/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -514,7 +514,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4001,7 +4001,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8159,7 +8159,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9254,12 +9254,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_8.0_Homunculus/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_8.0_Homunculus/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 5a148fd880..8cc0df94e9 100644 --- a/L2J_Mobius_8.0_Homunculus/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_8.0_Homunculus/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -508,7 +508,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4005,7 +4005,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8187,7 +8187,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9282,12 +9282,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_9.0_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_9.0_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 5a148fd880..8cc0df94e9 100644 --- a/L2J_Mobius_9.0_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_9.0_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -508,7 +508,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4005,7 +4005,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8187,7 +8187,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9282,12 +9282,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 780b57a5e3..f7619c5454 100644 --- a/L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -476,7 +476,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; /** Olympiad buff count. */ @@ -4134,7 +4134,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, new PartySmallWindowUpdate(this)); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { Collection players = World.getInstance().getVisibleObjects(this, PlayerInstance.class); if ((players != null) && !players.isEmpty()) @@ -8399,7 +8399,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - return _inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId()); + return _inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId()); } // Check if the attacker is in TvT and TvT is started @@ -8808,7 +8808,7 @@ public class PlayerInstance extends Playable return false; } - if (_inOlympiadMode && !_OlympiadStart) + if (_inOlympiadMode && !_olympiadStart) { // if PlayerInstance is in Olympia and the match isn't already start, send a Server->Client packet ActionFailed sendPacket(ActionFailed.STATIC_PACKET); @@ -9755,12 +9755,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 684110995f..096c745977 100644 --- a/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -495,7 +495,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; /** Olympiad buff count. */ @@ -4045,7 +4045,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, new PartySmallWindowUpdate(this)); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8283,7 +8283,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - return _inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId()); + return _inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId()); } // Check if the attacker is in TvT and TvT is started @@ -8692,7 +8692,7 @@ public class PlayerInstance extends Playable return false; } - if (_inOlympiadMode && !_OlympiadStart) + if (_inOlympiadMode && !_olympiadStart) { // if PlayerInstance is in Olympia and the match isn't already start, send a Server->Client packet ActionFailed sendPacket(ActionFailed.STATIC_PACKET); @@ -9638,12 +9638,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index f35315b5fc..ede2afabb4 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -494,7 +494,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4042,7 +4042,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8058,7 +8058,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9138,12 +9138,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index d6a7ce1cbf..7a97ec66c2 100644 --- a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -494,7 +494,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4042,7 +4042,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8058,7 +8058,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9138,12 +9138,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index d5e60c60e1..3aaccfb41d 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -492,7 +492,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4026,7 +4026,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8044,7 +8044,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9124,12 +9124,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 25c0634d2d..5b091f6822 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -499,7 +499,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4037,7 +4037,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8071,7 +8071,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9151,12 +9151,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index dff3b1533e..ebf8326728 100644 --- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -499,7 +499,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4037,7 +4037,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8071,7 +8071,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9151,12 +9151,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 576783fa60..8110389599 100644 --- a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -512,7 +512,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -3959,7 +3959,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8018,7 +8018,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9098,12 +9098,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 9e13413da6..087dd6517c 100644 --- a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -494,7 +494,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4044,7 +4044,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8060,7 +8060,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9150,12 +9150,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_Essence_4.0_DwellingOfSpirits/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_Essence_4.0_DwellingOfSpirits/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 8521d8ceca..2a3e55df8b 100644 --- a/L2J_Mobius_Essence_4.0_DwellingOfSpirits/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_Essence_4.0_DwellingOfSpirits/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -518,7 +518,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4027,7 +4027,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8097,7 +8097,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9185,12 +9185,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero() diff --git a/L2J_Mobius_Essence_5.0_Sylph/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_Essence_5.0_Sylph/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index a03a8878f6..76a972960c 100644 --- a/L2J_Mobius_Essence_5.0_Sylph/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_Essence_5.0_Sylph/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -518,7 +518,7 @@ public class PlayerInstance extends Playable /** Olympiad */ private boolean _inOlympiadMode = false; - private boolean _OlympiadStart = false; + private boolean _olympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; @@ -4027,7 +4027,7 @@ public class PlayerInstance extends Playable party.broadcastToPartyMembers(this, partyWindow); } - if (_inOlympiadMode && _OlympiadStart && (needCpUpdate || needHpUpdate)) + if (_inOlympiadMode && _olympiadStart && (needCpUpdate || needHpUpdate)) { final OlympiadGameTask game = OlympiadGameManager.getInstance().getOlympiadTask(getOlympiadGameId()); if ((game != null) && game.isBattleStarted()) @@ -8101,7 +8101,7 @@ public class PlayerInstance extends Playable // Check if the attacker is in olympia and olympia start if (attacker.isPlayer() && attacker.getActingPlayer().isInOlympiadMode()) { - if (_inOlympiadMode && _OlympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) + if (_inOlympiadMode && _olympiadStart && (((PlayerInstance) attacker).getOlympiadGameId() == getOlympiadGameId())) { return true; } @@ -9189,12 +9189,12 @@ public class PlayerInstance extends Playable public void setOlympiadStart(boolean value) { - _OlympiadStart = value; + _olympiadStart = value; } public boolean isOlympiadStart() { - return _OlympiadStart; + return _olympiadStart; } public boolean isHero()