소스 검색

BETA: Config Clean up after [6386]

Reported by: Battlecruiser
Nos 11 년 전
부모
커밋
8f6d10860f
2개의 변경된 파일0개의 추가작업 그리고 22개의 파일을 삭제
  1. 0 12
      L2J_Server_BETA/dist/game/config/NPC.properties
  2. 0 10
      L2J_Server_BETA/java/com/l2jserver/Config.java

+ 0 - 12
L2J_Server_BETA/dist/game/config/NPC.properties

@@ -33,18 +33,6 @@ AltGameViewNpc = False
 # Default: 300
 MaxDriftRange = 300
 
-# If True, the following deep blue mobs' drop penalties will be applied:
-#	- When player's level is 9 or greater than mob's level, drops got divided by 3.
-#	- After 9 levels of difference between player and mobs, drop chance is lowered by 9% each level that difference increases. (9lvls diff = -9%; 10lvls diff = -18%;)
-# Default: True
-UseDeepBlueDropRules = True
-
-# If True, the following deep blue raid bosses drop penalties will be applied:
-#	- When player's level is 9 or greater than raid's level, drops got divided by 3.
-#	- After 9 levels of difference between player and raid, drop chance is lowered by 9% each level that difference increases. (9lvls diff = -9%; 10lvls diff = -18%;)
-# Default: True
-UseDeepBlueDropRulesRaid = True
-
 # Default: False 
 ShowNpcLevel = False
 

+ 0 - 10
L2J_Server_BETA/java/com/l2jserver/Config.java

@@ -794,8 +794,6 @@ public final class Config
 	public static boolean ALT_ATTACKABLE_NPCS;
 	public static boolean ALT_GAME_VIEWNPC;
 	public static int MAX_DRIFT_RANGE;
-	public static boolean DEEPBLUE_DROP_RULES;
-	public static boolean DEEPBLUE_DROP_RULES_RAID;
 	public static boolean SHOW_NPC_LVL;
 	public static boolean SHOW_CREST_WITHOUT_QUEST;
 	public static boolean ENABLE_RANDOM_ENCHANT_EFFECT;
@@ -2029,8 +2027,6 @@ public final class Config
 			ALT_ATTACKABLE_NPCS = NPC.getBoolean("AltAttackableNpcs", true);
 			ALT_GAME_VIEWNPC = NPC.getBoolean("AltGameViewNpc", false);
 			MAX_DRIFT_RANGE = NPC.getInt("MaxDriftRange", 300);
-			DEEPBLUE_DROP_RULES = NPC.getBoolean("UseDeepBlueDropRules", true);
-			DEEPBLUE_DROP_RULES_RAID = NPC.getBoolean("UseDeepBlueDropRulesRaid", true);
 			SHOW_NPC_LVL = NPC.getBoolean("ShowNpcLevel", false);
 			SHOW_CREST_WITHOUT_QUEST = NPC.getBoolean("ShowCrestWithoutQuest", false);
 			ENABLE_RANDOM_ENCHANT_EFFECT = NPC.getBoolean("EnableRandomEnchantEffect", false);
@@ -3190,12 +3186,6 @@ public final class Config
 			case "maxdriftrange":
 				MAX_DRIFT_RANGE = Integer.parseInt(pValue);
 				break;
-			case "usedeepbluedroprules":
-				DEEPBLUE_DROP_RULES = Boolean.parseBoolean(pValue);
-				break;
-			case "usedeepbluedroprulesraid":
-				DEEPBLUE_DROP_RULES_RAID = Boolean.parseBoolean(pValue);
-				break;
 			case "guardattackaggromob":
 				GUARD_ATTACK_AGGRO_MOB = Boolean.parseBoolean(pValue);
 				break;