summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index d1ff57978..855b103b1 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -4221,6 +4221,11 @@ int pc_isUseitem(struct map_session_data *sd,int n)
else if( itemdb_is_poison(nameid) && (sd->class_&MAPID_THIRDMASK) != MAPID_GUILLOTINE_CROSS )
return 0;
+ if( (item->package || item->group) && pc_is90overweight(sd) ) {
+ clif->colormes(sd->fd,COLOR_RED,msg_txt(1477));// Item cannot be open when overweight by 90%
+ return 0;
+ }
+
//Gender check
if(item->sex != 2 && sd->status.sex != item->sex)
return 0;