diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-08 15:33:18 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-08 15:33:18 +0000 |
commit | 67560f093d726077d558479cee4e46af2c26d91d (patch) | |
tree | ccd598ca3253713235c1f69be29ccec88f870e66 /src/map/pc.c | |
parent | bc5f5bce06657ed1899f9635d7d4b353a033569e (diff) | |
download | hercules-67560f093d726077d558479cee4e46af2c26d91d.tar.gz hercules-67560f093d726077d558479cee4e46af2c26d91d.tar.bz2 hercules-67560f093d726077d558479cee4e46af2c26d91d.tar.xz hercules-67560f093d726077d558479cee4e46af2c26d91d.zip |
- Removed config settings display_delay_skill_fail and display_snatcher_skill_fail, replaced them with display_skill_fail, which can be used to determine whether you hide ALL skill-failed messages, those from delay, those from Snatcher or those from Envenom (battle/skill.conf)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8186 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index eaa157075..dc9134fa8 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -618,7 +618,7 @@ int pc_authok(struct map_session_data *sd, int login_id2, time_t connect_until_t if (battle_config.disp_zeny) sd->state.showzeny = 1; - if (battle_config.display_delay_skill_fail) + if (!battle_config.display_skill_fail&2) sd->state.showdelay = 1; // Request all registries. |