From c4d0af1a7b912222970e9b76f2edb4d24fadf5d7 Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Fri, 1 Dec 2017 05:30:57 +0000 Subject: [PATCH] Removed AltOlyMaxBuffs config. --- .../dist/game/config/Olympiad.ini | 4 ---- .../java/com/l2jmobius/Config.java | 2 -- .../model/actor/instance/L2PcInstance.java | 20 ------------------- .../model/olympiad/AbstractOlympiadGame.java | 1 - .../dist/game/config/Olympiad.ini | 4 ---- .../java/com/l2jmobius/Config.java | 2 -- .../model/actor/instance/L2PcInstance.java | 20 ------------------- .../model/olympiad/AbstractOlympiadGame.java | 1 - .../dist/game/config/Olympiad.ini | 4 ---- .../java/com/l2jmobius/Config.java | 2 -- .../model/actor/instance/L2PcInstance.java | 20 ------------------- .../model/olympiad/AbstractOlympiadGame.java | 1 - .../dist/game/config/Olympiad.ini | 4 ---- .../java/com/l2jmobius/Config.java | 2 -- .../model/actor/instance/L2PcInstance.java | 20 ------------------- .../model/olympiad/AbstractOlympiadGame.java | 1 - .../dist/game/config/Olympiad.ini | 4 ---- .../java/com/l2jmobius/Config.java | 2 -- .../gameserver/model/actor/L2Npc.java | 12 ----------- .../model/actor/instance/L2PcInstance.java | 20 ------------------- .../model/olympiad/AbstractOlympiadGame.java | 1 - 21 files changed, 147 deletions(-) diff --git a/L2J_Mobius_1.0_Ertheia/dist/game/config/Olympiad.ini b/L2J_Mobius_1.0_Ertheia/dist/game/config/Olympiad.ini index 503061a24e..e53687f83c 100644 --- a/L2J_Mobius_1.0_Ertheia/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_1.0_Ertheia/dist/game/config/Olympiad.ini @@ -17,10 +17,6 @@ AltOlyStartTime = 18 # Default: 00 AltOlyMin = 00 -# Maximum number of buffs. -# Default: 5 -AltOlyMaxBuffs = 5 - # Olympiad Competition Period, Default 6 hours. # (If set different, should be increment by 10mins) # Default: 21600000 diff --git a/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/Config.java b/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/Config.java index 0dbcc65d18..8d8e0f6587 100644 --- a/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/Config.java +++ b/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/Config.java @@ -502,7 +502,6 @@ public final class Config public static Duration WORLD_CHAT_INTERVAL; public static int ALT_OLY_START_TIME; public static int ALT_OLY_MIN; - public static int ALT_OLY_MAX_BUFFS; public static long ALT_OLY_CPERIOD; public static long ALT_OLY_BATTLE; public static long ALT_OLY_WPERIOD; @@ -2212,7 +2211,6 @@ public final class Config ALT_OLY_START_TIME = Olympiad.getInt("AltOlyStartTime", 18); ALT_OLY_MIN = Olympiad.getInt("AltOlyMin", 0); - ALT_OLY_MAX_BUFFS = Olympiad.getInt("AltOlyMaxBuffs", 5); ALT_OLY_CPERIOD = Olympiad.getLong("AltOlyCPeriod", 21600000); ALT_OLY_BATTLE = Olympiad.getLong("AltOlyBattle", 300000); ALT_OLY_WPERIOD = Olympiad.getLong("AltOlyWPeriod", 604800000); diff --git a/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java b/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java index c12fc58015..ebb1b815de 100644 --- a/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java +++ b/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java @@ -486,8 +486,6 @@ public final class L2PcInstance extends L2Playable private boolean _OlympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; - /** Olympiad buff count. */ - private int _olyBuffsCount = 0; /** Duel */ private boolean _isInDuel = false; @@ -9122,24 +9120,6 @@ public final class L2PcInstance extends L2Playable return _olympiadGameId; } - /** - * Gets the player's olympiad buff count. - * @return the olympiad's buff count - */ - public int getOlympiadBuffCount() - { - return _olyBuffsCount; - } - - /** - * Sets the player's olympiad buff count. - * @param buffs the olympiad's buff count - */ - public void setOlympiadBuffCount(int buffs) - { - _olyBuffsCount = buffs; - } - public Location getLastLocation() { return _lastLoc; diff --git a/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java b/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java index 9ef03baa0d..3d5e8d21fc 100644 --- a/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java +++ b/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java @@ -181,7 +181,6 @@ public abstract class AbstractOlympiadGame player.setIsInOlympiadMode(true); player.setIsOlympiadStart(false); player.setOlympiadSide(par.getSide()); - player.setOlympiadBuffCount(Config.ALT_OLY_MAX_BUFFS); player.teleToLocation(loc, instance); player.sendPacket(new ExOlympiadMode(2)); } diff --git a/L2J_Mobius_2.5_Underground/dist/game/config/Olympiad.ini b/L2J_Mobius_2.5_Underground/dist/game/config/Olympiad.ini index 503061a24e..e53687f83c 100644 --- a/L2J_Mobius_2.5_Underground/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_2.5_Underground/dist/game/config/Olympiad.ini @@ -17,10 +17,6 @@ AltOlyStartTime = 18 # Default: 00 AltOlyMin = 00 -# Maximum number of buffs. -# Default: 5 -AltOlyMaxBuffs = 5 - # Olympiad Competition Period, Default 6 hours. # (If set different, should be increment by 10mins) # Default: 21600000 diff --git a/L2J_Mobius_2.5_Underground/java/com/l2jmobius/Config.java b/L2J_Mobius_2.5_Underground/java/com/l2jmobius/Config.java index f94900f605..b08660752f 100644 --- a/L2J_Mobius_2.5_Underground/java/com/l2jmobius/Config.java +++ b/L2J_Mobius_2.5_Underground/java/com/l2jmobius/Config.java @@ -503,7 +503,6 @@ public final class Config public static Duration WORLD_CHAT_INTERVAL; public static int ALT_OLY_START_TIME; public static int ALT_OLY_MIN; - public static int ALT_OLY_MAX_BUFFS; public static long ALT_OLY_CPERIOD; public static long ALT_OLY_BATTLE; public static long ALT_OLY_WPERIOD; @@ -2214,7 +2213,6 @@ public final class Config ALT_OLY_START_TIME = Olympiad.getInt("AltOlyStartTime", 18); ALT_OLY_MIN = Olympiad.getInt("AltOlyMin", 0); - ALT_OLY_MAX_BUFFS = Olympiad.getInt("AltOlyMaxBuffs", 5); ALT_OLY_CPERIOD = Olympiad.getLong("AltOlyCPeriod", 21600000); ALT_OLY_BATTLE = Olympiad.getLong("AltOlyBattle", 300000); ALT_OLY_WPERIOD = Olympiad.getLong("AltOlyWPeriod", 604800000); diff --git a/L2J_Mobius_2.5_Underground/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java b/L2J_Mobius_2.5_Underground/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java index c06ce40ec2..ef36cf45c1 100644 --- a/L2J_Mobius_2.5_Underground/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java +++ b/L2J_Mobius_2.5_Underground/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java @@ -485,8 +485,6 @@ public final class L2PcInstance extends L2Playable private boolean _OlympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; - /** Olympiad buff count. */ - private int _olyBuffsCount = 0; /** Duel */ private boolean _isInDuel = false; @@ -9123,24 +9121,6 @@ public final class L2PcInstance extends L2Playable return _olympiadGameId; } - /** - * Gets the player's olympiad buff count. - * @return the olympiad's buff count - */ - public int getOlympiadBuffCount() - { - return _olyBuffsCount; - } - - /** - * Sets the player's olympiad buff count. - * @param buffs the olympiad's buff count - */ - public void setOlympiadBuffCount(int buffs) - { - _olyBuffsCount = buffs; - } - public Location getLastLocation() { return _lastLoc; diff --git a/L2J_Mobius_2.5_Underground/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java b/L2J_Mobius_2.5_Underground/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java index 16b701ea9a..f938e2671a 100644 --- a/L2J_Mobius_2.5_Underground/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java +++ b/L2J_Mobius_2.5_Underground/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java @@ -181,7 +181,6 @@ public abstract class AbstractOlympiadGame player.setIsInOlympiadMode(true); player.setIsOlympiadStart(false); player.setOlympiadSide(par.getSide()); - player.setOlympiadBuffCount(Config.ALT_OLY_MAX_BUFFS); player.teleToLocation(loc, instance); player.sendPacket(new ExOlympiadMode(2)); } diff --git a/L2J_Mobius_3.0_Helios/dist/game/config/Olympiad.ini b/L2J_Mobius_3.0_Helios/dist/game/config/Olympiad.ini index 503061a24e..e53687f83c 100644 --- a/L2J_Mobius_3.0_Helios/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_3.0_Helios/dist/game/config/Olympiad.ini @@ -17,10 +17,6 @@ AltOlyStartTime = 18 # Default: 00 AltOlyMin = 00 -# Maximum number of buffs. -# Default: 5 -AltOlyMaxBuffs = 5 - # Olympiad Competition Period, Default 6 hours. # (If set different, should be increment by 10mins) # Default: 21600000 diff --git a/L2J_Mobius_3.0_Helios/java/com/l2jmobius/Config.java b/L2J_Mobius_3.0_Helios/java/com/l2jmobius/Config.java index ffd19a881c..35800fd571 100644 --- a/L2J_Mobius_3.0_Helios/java/com/l2jmobius/Config.java +++ b/L2J_Mobius_3.0_Helios/java/com/l2jmobius/Config.java @@ -503,7 +503,6 @@ public final class Config public static Duration WORLD_CHAT_INTERVAL; public static int ALT_OLY_START_TIME; public static int ALT_OLY_MIN; - public static int ALT_OLY_MAX_BUFFS; public static long ALT_OLY_CPERIOD; public static long ALT_OLY_BATTLE; public static long ALT_OLY_WPERIOD; @@ -2223,7 +2222,6 @@ public final class Config ALT_OLY_START_TIME = Olympiad.getInt("AltOlyStartTime", 18); ALT_OLY_MIN = Olympiad.getInt("AltOlyMin", 0); - ALT_OLY_MAX_BUFFS = Olympiad.getInt("AltOlyMaxBuffs", 5); ALT_OLY_CPERIOD = Olympiad.getLong("AltOlyCPeriod", 21600000); ALT_OLY_BATTLE = Olympiad.getLong("AltOlyBattle", 300000); ALT_OLY_WPERIOD = Olympiad.getLong("AltOlyWPeriod", 604800000); diff --git a/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java b/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java index 4d94dd7d17..f4576eb25d 100644 --- a/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java +++ b/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java @@ -487,8 +487,6 @@ public final class L2PcInstance extends L2Playable private boolean _OlympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; - /** Olympiad buff count. */ - private int _olyBuffsCount = 0; /** Duel */ private boolean _isInDuel = false; @@ -9133,24 +9131,6 @@ public final class L2PcInstance extends L2Playable return _olympiadGameId; } - /** - * Gets the player's olympiad buff count. - * @return the olympiad's buff count - */ - public int getOlympiadBuffCount() - { - return _olyBuffsCount; - } - - /** - * Sets the player's olympiad buff count. - * @param buffs the olympiad's buff count - */ - public void setOlympiadBuffCount(int buffs) - { - _olyBuffsCount = buffs; - } - public Location getLastLocation() { return _lastLoc; diff --git a/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java b/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java index 16b701ea9a..f938e2671a 100644 --- a/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java +++ b/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java @@ -181,7 +181,6 @@ public abstract class AbstractOlympiadGame player.setIsInOlympiadMode(true); player.setIsOlympiadStart(false); player.setOlympiadSide(par.getSide()); - player.setOlympiadBuffCount(Config.ALT_OLY_MAX_BUFFS); player.teleToLocation(loc, instance); player.sendPacket(new ExOlympiadMode(2)); } diff --git a/L2J_Mobius_4.0_GrandCrusade/dist/game/config/Olympiad.ini b/L2J_Mobius_4.0_GrandCrusade/dist/game/config/Olympiad.ini index 503061a24e..e53687f83c 100644 --- a/L2J_Mobius_4.0_GrandCrusade/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_4.0_GrandCrusade/dist/game/config/Olympiad.ini @@ -17,10 +17,6 @@ AltOlyStartTime = 18 # Default: 00 AltOlyMin = 00 -# Maximum number of buffs. -# Default: 5 -AltOlyMaxBuffs = 5 - # Olympiad Competition Period, Default 6 hours. # (If set different, should be increment by 10mins) # Default: 21600000 diff --git a/L2J_Mobius_4.0_GrandCrusade/java/com/l2jmobius/Config.java b/L2J_Mobius_4.0_GrandCrusade/java/com/l2jmobius/Config.java index 7bbc910e32..5cb23d5a70 100644 --- a/L2J_Mobius_4.0_GrandCrusade/java/com/l2jmobius/Config.java +++ b/L2J_Mobius_4.0_GrandCrusade/java/com/l2jmobius/Config.java @@ -503,7 +503,6 @@ public final class Config public static Duration WORLD_CHAT_INTERVAL; public static int ALT_OLY_START_TIME; public static int ALT_OLY_MIN; - public static int ALT_OLY_MAX_BUFFS; public static long ALT_OLY_CPERIOD; public static long ALT_OLY_BATTLE; public static long ALT_OLY_WPERIOD; @@ -2221,7 +2220,6 @@ public final class Config ALT_OLY_START_TIME = Olympiad.getInt("AltOlyStartTime", 18); ALT_OLY_MIN = Olympiad.getInt("AltOlyMin", 0); - ALT_OLY_MAX_BUFFS = Olympiad.getInt("AltOlyMaxBuffs", 5); ALT_OLY_CPERIOD = Olympiad.getLong("AltOlyCPeriod", 21600000); ALT_OLY_BATTLE = Olympiad.getLong("AltOlyBattle", 300000); ALT_OLY_WPERIOD = Olympiad.getLong("AltOlyWPeriod", 604800000); diff --git a/L2J_Mobius_4.0_GrandCrusade/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java b/L2J_Mobius_4.0_GrandCrusade/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java index ae02fcf758..9a8d1fd646 100644 --- a/L2J_Mobius_4.0_GrandCrusade/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java +++ b/L2J_Mobius_4.0_GrandCrusade/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java @@ -493,8 +493,6 @@ public final class L2PcInstance extends L2Playable private boolean _OlympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; - /** Olympiad buff count. */ - private int _olyBuffsCount = 0; /** Duel */ private boolean _isInDuel = false; @@ -9131,24 +9129,6 @@ public final class L2PcInstance extends L2Playable return _olympiadGameId; } - /** - * Gets the player's olympiad buff count. - * @return the olympiad's buff count - */ - public int getOlympiadBuffCount() - { - return _olyBuffsCount; - } - - /** - * Sets the player's olympiad buff count. - * @param buffs the olympiad's buff count - */ - public void setOlympiadBuffCount(int buffs) - { - _olyBuffsCount = buffs; - } - public Location getLastLocation() { return _lastLoc; diff --git a/L2J_Mobius_4.0_GrandCrusade/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java b/L2J_Mobius_4.0_GrandCrusade/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java index 16b701ea9a..f938e2671a 100644 --- a/L2J_Mobius_4.0_GrandCrusade/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java +++ b/L2J_Mobius_4.0_GrandCrusade/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java @@ -181,7 +181,6 @@ public abstract class AbstractOlympiadGame player.setIsInOlympiadMode(true); player.setIsOlympiadStart(false); player.setOlympiadSide(par.getSide()); - player.setOlympiadBuffCount(Config.ALT_OLY_MAX_BUFFS); player.teleToLocation(loc, instance); player.sendPacket(new ExOlympiadMode(2)); } diff --git a/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/Olympiad.ini b/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/Olympiad.ini index 503061a24e..e53687f83c 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/Olympiad.ini @@ -17,10 +17,6 @@ AltOlyStartTime = 18 # Default: 00 AltOlyMin = 00 -# Maximum number of buffs. -# Default: 5 -AltOlyMaxBuffs = 5 - # Olympiad Competition Period, Default 6 hours. # (If set different, should be increment by 10mins) # Default: 21600000 diff --git a/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/Config.java b/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/Config.java index bb1fa2d8d6..5de629cc8e 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/Config.java @@ -502,7 +502,6 @@ public final class Config public static Duration WORLD_CHAT_INTERVAL; public static int ALT_OLY_START_TIME; public static int ALT_OLY_MIN; - public static int ALT_OLY_MAX_BUFFS; public static long ALT_OLY_CPERIOD; public static long ALT_OLY_BATTLE; public static long ALT_OLY_WPERIOD; @@ -2145,7 +2144,6 @@ public final class Config ALT_OLY_START_TIME = Olympiad.getInt("AltOlyStartTime", 18); ALT_OLY_MIN = Olympiad.getInt("AltOlyMin", 0); - ALT_OLY_MAX_BUFFS = Olympiad.getInt("AltOlyMaxBuffs", 5); ALT_OLY_CPERIOD = Olympiad.getLong("AltOlyCPeriod", 21600000); ALT_OLY_BATTLE = Olympiad.getLong("AltOlyBattle", 300000); ALT_OLY_WPERIOD = Olympiad.getLong("AltOlyWPeriod", 604800000); diff --git a/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/gameserver/model/actor/L2Npc.java b/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/gameserver/model/actor/L2Npc.java index 009696bfa6..16ddff8ee6 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/gameserver/model/actor/L2Npc.java +++ b/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/gameserver/model/actor/L2Npc.java @@ -827,18 +827,6 @@ public class L2Npc extends L2Character } break; } - case 36402: - { - if (player.getOlympiadBuffCount() > 0) - { - filename = (player.getOlympiadBuffCount() == Config.ALT_OLY_MAX_BUFFS ? Olympiad.OLYMPIAD_HTML_PATH + "olympiad_buffs.htm" : Olympiad.OLYMPIAD_HTML_PATH + "olympiad_5buffs.htm"); - } - else - { - filename = Olympiad.OLYMPIAD_HTML_PATH + "olympiad_nobuffs.htm"; - } - break; - } case 30298: // Blacksmith Pinter { if (player.isAcademyMember()) diff --git a/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java b/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java index f824c81fda..da7b19a932 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java +++ b/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java @@ -483,8 +483,6 @@ public final class L2PcInstance extends L2Playable private boolean _OlympiadStart = false; private int _olympiadGameId = -1; private int _olympiadSide = -1; - /** Olympiad buff count. */ - private int _olyBuffsCount = 0; /** Duel */ private boolean _isInDuel = false; @@ -9066,24 +9064,6 @@ public final class L2PcInstance extends L2Playable return _olympiadGameId; } - /** - * Gets the player's olympiad buff count. - * @return the olympiad's buff count - */ - public int getOlympiadBuffCount() - { - return _olyBuffsCount; - } - - /** - * Sets the player's olympiad buff count. - * @param buffs the olympiad's buff count - */ - public void setOlympiadBuffCount(int buffs) - { - _olyBuffsCount = buffs; - } - public Location getLastLocation() { return _lastLoc; diff --git a/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java b/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java index 16b701ea9a..f938e2671a 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java +++ b/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/gameserver/model/olympiad/AbstractOlympiadGame.java @@ -181,7 +181,6 @@ public abstract class AbstractOlympiadGame player.setIsInOlympiadMode(true); player.setIsOlympiadStart(false); player.setOlympiadSide(par.getSide()); - player.setOlympiadBuffCount(Config.ALT_OLY_MAX_BUFFS); player.teleToLocation(loc, instance); player.sendPacket(new ExOlympiadMode(2)); }