diff options
author | shennetsind <ind@henn.et> | 2013-09-09 17:11:22 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-09-09 17:11:22 -0300 |
commit | ae850bdefd7d9ecfecdb20d6e5803896fad00dfd (patch) | |
tree | c807780003ffcffee62e5a5166f3a4bc948aff93 /src/map/pc.h | |
parent | 78c14e42231965f281090785170aac5c0c119a9a (diff) | |
download | hercules-ae850bdefd7d9ecfecdb20d6e5803896fad00dfd.tar.gz hercules-ae850bdefd7d9ecfecdb20d6e5803896fad00dfd.tar.bz2 hercules-ae850bdefd7d9ecfecdb20d6e5803896fad00dfd.tar.xz hercules-ae850bdefd7d9ecfecdb20d6e5803896fad00dfd.zip |
Fixed Bug #6626
Game client is currently broken on this feature, sending the request when the criteria doesn't match and not doing anything when it matches, I've restored the previous method to make the feature work once again, the message is configurable by conf/messages.conf and whether maxed characters can use it now a setting in conf/battle/player.conf
http://hercules.ws/board/tracker/issue-6626-cant-prayer-guardian-angel-super-novice/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index 7db5c2fcc..231f369d8 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -167,6 +167,7 @@ struct map_session_data { unsigned int prerefining : 1; unsigned int workinprogress : 3; // 1 = disable skill/item, 2 = disable npc interaction, 3 = disable both unsigned int hold_recalc : 1; + unsigned int snovice_call_flag : 3; //Summon Angel (stage 1~3) } state; struct { unsigned char no_weapon_damage, no_magic_damage, no_misc_damage; |