diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-08-21 23:24:50 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-08-21 23:24:50 +0000 |
commit | 67466ae983ea6e2568b3e017c5d1976850308a2a (patch) | |
tree | 290ad7c38bd40662f81a4f649f3058854d27ced6 /src/map/battle.c | |
parent | a26298ee3aa66edb4ef23b291b23ac0419be50f5 (diff) | |
download | hercules-67466ae983ea6e2568b3e017c5d1976850308a2a.tar.gz hercules-67466ae983ea6e2568b3e017c5d1976850308a2a.tar.bz2 hercules-67466ae983ea6e2568b3e017c5d1976850308a2a.tar.xz hercules-67466ae983ea6e2568b3e017c5d1976850308a2a.zip |
* Fixed monsters above Lv99 displaying a Lv99 aura (bugreport:3986).
- The server no longer caps the level sent to the client by default.
- Servers that require the aura to be displayed at a level different from lv99, either have to alter the client or adjust the 'client_limit_unit_lv' setting.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14938 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battle.c')
-rw-r--r-- | src/map/battle.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/battle.c b/src/map/battle.c index 47a2d70be..b9a408a84 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -4014,6 +4014,7 @@ static const struct _battle_data { { "display_party_name", &battle_config.display_party_name, 0, 0, 1, }, { "cashshop_show_points", &battle_config.cashshop_show_points, 0, 0, 1, }, { "mail_show_status", &battle_config.mail_show_status, 0, 0, 2, }, + { "client_limit_unit_lv", &battle_config.client_limit_unit_lv, 0, 0, BL_ALL, }, // BattleGround Settings { "bg_update_interval", &battle_config.bg_update_interval, 1000, 100, INT_MAX, }, { "bg_short_attack_damage_rate", &battle_config.bg_short_damage_rate, 80, 0, INT_MAX, }, |