Просмотр исходного кода

BETA: Fixed a minor typo in config.

Reported by: foxmulder
Patch by: Zephyr 
Reviewed by: St3eT, foxmulder
Nos 11 лет назад
Родитель
Сommit
7ebbd3a590

+ 1 - 1
L2J_Server_BETA/dist/game/config/L2JMods.properties

@@ -262,7 +262,7 @@ OfflineCraftEnable = False
 
 # If set to True, off-line shops will be possible only peace zones.
 # Default: False
-OfflineModeInPaceZone = False
+OfflineModeInPeaceZone = False
 
 # If set to True, players in off-line shop mode wont take any damage, thus they cannot be killed.
 # Default: False

+ 1 - 1
L2J_Server_BETA/java/com/l2jserver/Config.java

@@ -2498,7 +2498,7 @@ public final class Config
 			
 			OFFLINE_TRADE_ENABLE = L2JModSettings.getBoolean("OfflineTradeEnable", false);
 			OFFLINE_CRAFT_ENABLE = L2JModSettings.getBoolean("OfflineCraftEnable", false);
-			OFFLINE_MODE_IN_PEACE_ZONE = L2JModSettings.getBoolean("OfflineModeInPaceZone", false);
+			OFFLINE_MODE_IN_PEACE_ZONE = L2JModSettings.getBoolean("OfflineModeInPeaceZone", false);
 			OFFLINE_MODE_NO_DAMAGE = L2JModSettings.getBoolean("OfflineModeNoDamage", false);
 			OFFLINE_SET_NAME_COLOR = L2JModSettings.getBoolean("OfflineSetNameColor", false);
 			OFFLINE_NAME_COLOR = Integer.decode("0x" + L2JModSettings.getString("OfflineNameColor", "808080"));