diff --git a/L2J_Mobius_CT_2.6_HighFive/dist/game/config/General.ini b/L2J_Mobius_CT_2.6_HighFive/dist/game/config/General.ini index eb1df96d5d..098ddc1213 100644 --- a/L2J_Mobius_CT_2.6_HighFive/dist/game/config/General.ini +++ b/L2J_Mobius_CT_2.6_HighFive/dist/game/config/General.ini @@ -669,9 +669,6 @@ CustomNpcData = True # Default: False CustomTeleportTable = True -# Default: False -CustomNpcBufferTables = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_CT_2.6_HighFive/java/com/l2jmobius/Config.java b/L2J_Mobius_CT_2.6_HighFive/java/com/l2jmobius/Config.java index b97d646dc6..eec9ee26be 100644 --- a/L2J_Mobius_CT_2.6_HighFive/java/com/l2jmobius/Config.java +++ b/L2J_Mobius_CT_2.6_HighFive/java/com/l2jmobius/Config.java @@ -657,7 +657,6 @@ public final class Config public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; public static boolean CUSTOM_TELEPORT_TABLE; - public static boolean CUSTOM_NPCBUFFER_TABLES; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2152,7 +2151,6 @@ public final class Config JAIL_DISABLE_TRANSACTION = General.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = General.getBoolean("CustomNpcData", false); CUSTOM_TELEPORT_TABLE = General.getBoolean("CustomTeleportTable", false); - CUSTOM_NPCBUFFER_TABLES = General.getBoolean("CustomNpcBufferTables", false); CUSTOM_SKILLS_LOAD = General.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = General.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = General.getBoolean("CustomMultisellLoad", false);