summaryrefslogtreecommitdiff
path: root/src/map/unit.c
diff options
context:
space:
mode:
authorcsnv <ctt@csnv.es>2014-09-10 00:12:17 +0200
committercsnv <ctt@csnv.es>2014-09-10 00:12:17 +0200
commitd19310af9540db177bb35116d19dd1c3a2afff14 (patch)
treee733376112c60f53286eeb4464eb24e7b69d6c4c /src/map/unit.c
parente785879df0519ee69afcac34a1b49db1462d67fc (diff)
downloadhercules-d19310af9540db177bb35116d19dd1c3a2afff14.tar.gz
hercules-d19310af9540db177bb35116d19dd1c3a2afff14.tar.bz2
hercules-d19310af9540db177bb35116d19dd1c3a2afff14.tar.xz
hercules-d19310af9540db177bb35116d19dd1c3a2afff14.zip
Fixes songs refresh bug, updates BA_ASSASSINCROSS
- Fixes bug 7125: http://hercules.ws/board/tracker/issue-7125-song-refresh/ (Rathena fix) - Updated BA_ASSASSINCROSS ASPD Renewal Formula according to latest tests - Added 'Skill failed' message to Devotion
Diffstat (limited to 'src/map/unit.c')
-rw-r--r--src/map/unit.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/map/unit.c b/src/map/unit.c
index 519427635..8b74ff80c 100644
--- a/src/map/unit.c
+++ b/src/map/unit.c
@@ -1247,8 +1247,10 @@ int unit_skilluse_id2(struct block_list *src, int target_id, uint16 skill_id, ui
ARR_FIND(0, count, i, sd->devotion[i] == target_id);
if (i == count) {
ARR_FIND(0, count, i, sd->devotion[i] == 0);
- if(i == count)
- return 0; // Can't cast on other characters when limit is reached
+ if(i == count) {
+ clif->skill_fail(sd, skill_id, USESKILL_FAIL_LEVEL, 0);
+ return 0; // Can't cast on other characters when limit is reached
+ }
}
}
break;