diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-11 16:20:40 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-11 16:20:40 +0000 |
commit | 2a99ea9509dddcdafc85cc8348c44a5bd5d4e3eb (patch) | |
tree | 8929e6f2ad817b3c9866d9fa3b473489f49adb2e /src/map/skill.c | |
parent | 70afc9d7d00b346e3139363abd411a51874ce5b5 (diff) | |
download | hercules-2a99ea9509dddcdafc85cc8348c44a5bd5d4e3eb.tar.gz hercules-2a99ea9509dddcdafc85cc8348c44a5bd5d4e3eb.tar.bz2 hercules-2a99ea9509dddcdafc85cc8348c44a5bd5d4e3eb.tar.xz hercules-2a99ea9509dddcdafc85cc8348c44a5bd5d4e3eb.zip |
- Added a comment explaining what a comment is to login/char/map config files, as well as the main script config file.
- Modified SG_FEEL so that it works the same way that in Aegis (packet-wise)
- Added a comment to explain how to "remove" a string variable from the msg_athena entries.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8707 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index 92ad67ecd..78ef53fb5 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -5404,12 +5404,10 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, in break; case SG_FEEL: + //AuronX reported you CAN memorize the same map as all three. [Skotlex] if (sd) { - if(!sd->feel_map[skilllv-1].index) { - //AuronX reported you CAN memorize the same map as all three. [Skotlex] - clif_skill_nodamage(src,bl,skillid,skilllv,1); + if(!sd->feel_map[skilllv-1].index) clif_parse_ReqFeel(sd->fd,sd, skilllv); - } else clif_feel_info(sd, skilllv-1); } |