Partial sync with L2jServer HighFive Nov 6th 2015.

This commit is contained in:
MobiusDev
2015-11-07 01:14:51 +00:00
parent 4964c24da9
commit 57dcdb065d
107 changed files with 1331 additions and 266 deletions

View File

@@ -124,7 +124,6 @@ public final class Config
public static double RESPAWN_RESTORE_CP;
public static double RESPAWN_RESTORE_HP;
public static double RESPAWN_RESTORE_MP;
public static boolean ALT_GAME_TIREDNESS;
public static boolean ENABLE_MODIFY_SKILL_DURATION;
public static Map<Integer, Integer> SKILL_DURATION_LIST;
public static boolean ENABLE_MODIFY_SKILL_REUSE;
@@ -1407,7 +1406,6 @@ public final class Config
HP_REGEN_MULTIPLIER = character.getDouble("HpRegenMultiplier", 100) / 100;
MP_REGEN_MULTIPLIER = character.getDouble("MpRegenMultiplier", 100) / 100;
CP_REGEN_MULTIPLIER = character.getDouble("CpRegenMultiplier", 100) / 100;
ALT_GAME_TIREDNESS = character.getBoolean("AltGameTiredness", false);
ENABLE_MODIFY_SKILL_DURATION = character.getBoolean("EnableModifySkillDuration", false);
// Create Map only if enabled
@@ -3427,9 +3425,6 @@ public final class Config
case "announcemammonspawn":
ANNOUNCE_MAMMON_SPAWN = Boolean.parseBoolean(pValue);
break;
case "altgametiredness":
ALT_GAME_TIREDNESS = Boolean.parseBoolean(pValue);
break;
case "enablefallingdamage":
ENABLE_FALLING_DAMAGE = Boolean.parseBoolean(pValue);
break;