diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-05 20:58:27 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-05 20:58:27 +0000 |
commit | 30899d3e29a02162c8ece5e0fca0fd05fcd10be1 (patch) | |
tree | c0580c2101c51597bcfdbd546ff54cc52fc61fc4 /src/map/battle.c | |
parent | 7dca4f40ec19769deb05f315d4e35417cea06a19 (diff) | |
download | hercules-30899d3e29a02162c8ece5e0fca0fd05fcd10be1.tar.gz hercules-30899d3e29a02162c8ece5e0fca0fd05fcd10be1.tar.bz2 hercules-30899d3e29a02162c8ece5e0fca0fd05fcd10be1.tar.xz hercules-30899d3e29a02162c8ece5e0fca0fd05fcd10be1.zip |
- Removed setting mob_show_hp, it's been replaced now by mob_show_info, which can be used to specify what kind of info should be displayed from a mob. Current options are two different formats for Hp display, and current level.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8644 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battle.c')
-rw-r--r-- | src/map/battle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/battle.c b/src/map/battle.c index fe693d1ec..e446e8376 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -3670,7 +3670,7 @@ static const struct battle_data_short { { "max_exp_gain_rate", &battle_config.max_exp_gain_rate }, // [Skotlex] { "backstab_bow_penalty", &battle_config.backstab_bow_penalty }, { "night_at_start", &battle_config.night_at_start }, // added by [Yor] - { "show_mob_hp", &battle_config.show_mob_hp }, // [Valaris] + { "show_mob_info", &battle_config.show_mob_info }, // [Valaris] { "ban_spoof_namer", &battle_config.ban_spoof_namer }, // added by [Yor] { "hack_info_GM_level", &battle_config.hack_info_GM_level }, // added by [Yor] { "any_warp_GM_min_level", &battle_config.any_warp_GM_min_level }, // added by [Yor] @@ -4103,7 +4103,7 @@ void battle_set_defaults() { battle_config.night_at_start = 0; // added by [Yor] battle_config.day_duration = 2*60*60*1000; // added by [Yor] (2 hours) battle_config.night_duration = 30*60*1000; // added by [Yor] (30 minutes) - battle_config.show_mob_hp = 0; // [Valaris] + battle_config.show_mob_info = 0; battle_config.ban_spoof_namer = 5; // added by [Yor] (default: 5 minutes) battle_config.hack_info_GM_level = 60; // added by [Yor] (default: 60, GM level) battle_config.any_warp_GM_min_level = 20; // added by [Yor] |