janiii 15 éve
szülő
commit
34bd6e66cb

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

@@ -1565,7 +1565,7 @@ public final class Config
 					RESTART_ON_DEADLOCK = Boolean.parseBoolean(General.getProperty("RestartOnDeadlock", "False"));
 					ALLOW_DISCARDITEM = Boolean.parseBoolean(General.getProperty("AllowDiscardItem", "True"));
 					AUTODESTROY_ITEM_AFTER = Integer.parseInt(General.getProperty("AutoDestroyDroppedItemAfter", "600"));
-					HERB_AUTO_DESTROY_TIME = Integer.parseInt(General.getProperty("AutoDestroyHerbTime","15"))*1000;
+					HERB_AUTO_DESTROY_TIME = Integer.parseInt(General.getProperty("AutoDestroyHerbTime","60"))*1000;
 					PROTECTED_ITEMS = General.getProperty("ListOfProtectedItems", "0");
 					LIST_PROTECTED_ITEMS = new FastList<Integer>();
 					for (String id : PROTECTED_ITEMS.split(","))

+ 1 - 1
L2_GameServer/java/config/Feature.properties

@@ -8,7 +8,7 @@
 # Castle
 # ---------------------------------------------------------------------------
 # Siege Time rules
-# Which values can change Castle Lords
+# Which values can change Castle Lords (day,hour,minute)
 # Default: hour,minute
 CLSetSiegeTimeList = hour,minute
 

+ 2 - 2
L2_GameServer/java/config/General.properties

@@ -161,8 +161,8 @@ AllowDiscardItem = True
 # Default: 600
 AutoDestroyDroppedItemAfter = 600
 
-# Time in secs after which dropped herb will be auto-destroyed (default: 15 seconds)
-# Default: 15
+# Time in secs after which dropped herb will be auto-destroyed
+# Default: 60
 AutoDestroyHerbTime = 60
 
 # List of item id that will not be destroyed (separated by "," like 57,5575,6673).

+ 2 - 2
L2_GameServer/java/config/rates.properties

@@ -29,10 +29,10 @@ RateSiegeGuardsPrice = 1
 RateDropQuest = 1
 
 # List of items affected by custom drop rate by id, used now for Adena rate too.
-# Usage: itemId1,dropChance1;itemId2,doprChance2;...
+# Usage: itemId1,dropChance1;itemId2,dropChance2;...
 # Note: Make sure the lists do NOT CONTAIN trailing spaces or spaces between the numbers!
 # Example for Raid boss 1x jewelry: 6656,1;6657,1;6658,1;6659,1;6660,1;6661,1;6662,1;8191,1;10170,1;10314,1;
-# Default: 
+# Default: 57,1
 RateDropItemsById = 57,1 
 
 # ---------------------------------------------------------------------------