瀏覽代碼

- shutdown info message
- typo in config

janiii 15 年之前
父節點
當前提交
0c476265ac
共有 2 個文件被更改,包括 2 次插入1 次删除
  1. 1 1
      L2_GameServer/java/net/sf/l2j/Config.java
  2. 1 0
      L2_GameServer/java/net/sf/l2j/gameserver/Shutdown.java

+ 1 - 1
L2_GameServer/java/net/sf/l2j/Config.java

@@ -2274,7 +2274,7 @@ public final class Config
 		else if (pName.equalsIgnoreCase("CheckKnownList")) CHECK_KNOWN = Boolean.parseBoolean(pValue);
 
 		else if (pName.equalsIgnoreCase("UseDeepBlueDropRules")) DEEPBLUE_DROP_RULES = Boolean.parseBoolean(pValue);
-		else if (pName.equalsIgnoreCase("AllowGuards")) GUARD_ATTACK_AGGRO_MOB = Boolean.parseBoolean(pValue);
+		else if (pName.equalsIgnoreCase("GuardAttackAggroMob")) GUARD_ATTACK_AGGRO_MOB = Boolean.parseBoolean(pValue);
 		else if (pName.equalsIgnoreCase("CancelLesserEffect")) EFFECT_CANCELING = Boolean.parseBoolean(pValue);
 
 		else if (pName.equalsIgnoreCase("MaximumSlotsForNoDwarf")) INVENTORY_MAXIMUM_NO_DWARF = Integer.parseInt(pValue);

+ 1 - 0
L2_GameServer/java/net/sf/l2j/gameserver/Shutdown.java

@@ -495,6 +495,7 @@ public class Shutdown extends Thread
 		_log.info("RaidBossSpawnManager: All raidboss info saved!!");
 		GrandBossManager.getInstance().cleanUp();
 		_log.info("GrandBossManager: All Grand Boss info saved!!");
+		_log.info("TradeController saving data.. This action may take some minutes! Please wait until completed!");
 		TradeController.getInstance().dataCountStore();
 		_log.info("TradeController: All count Item Saved");
 		Olympiad.getInstance().saveOlympiadStatus();