summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-07-21 16:24:57 -0300
committershennetsind <ind@henn.et>2013-07-21 16:24:57 -0300
commit68fb17f516928242d9d1b4144038d933bfdd7eec (patch)
treeca8bda1a505fb51872219d13552ff2b30d397003 /src/map/pc.c
parentdede3fb8bdfdbb8c49ebc7e9b5a0a2665033f8e8 (diff)
downloadhercules-68fb17f516928242d9d1b4144038d933bfdd7eec.tar.gz
hercules-68fb17f516928242d9d1b4144038d933bfdd7eec.tar.bz2
hercules-68fb17f516928242d9d1b4144038d933bfdd7eec.tar.xz
hercules-68fb17f516928242d9d1b4144038d933bfdd7eec.zip
Fixed Bug #7526
Skill from items with instantaneous casting are no longer affected by magic power http://hercules.ws/board/tracker/issue-7526-item-skill-error/ Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 855b103b1..e14f9b807 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -4222,6 +4222,7 @@ int pc_isUseitem(struct map_session_data *sd,int n)
return 0;
if( (item->package || item->group) && pc_is90overweight(sd) ) {
+ //##TODO## find official response to this
clif->colormes(sd->fd,COLOR_RED,msg_txt(1477));// Item cannot be open when overweight by 90%
return 0;
}