summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorJedzkie <jedzkie13@rocketmail.com>2017-04-18 16:05:44 +0800
committerJedzkie <jedzkie13@rocketmail.com>2017-04-21 01:15:16 +0800
commit018f3c4278351017b5eb727c0007d69303a53bf5 (patch)
tree0d0e0714a6031de8da441b7bfd327efda8901bd1 /src/map/pc.c
parentb1fdb0176241759a3085ad8b4d5bf415d3392f03 (diff)
downloadhercules-018f3c4278351017b5eb727c0007d69303a53bf5.tar.gz
hercules-018f3c4278351017b5eb727c0007d69303a53bf5.tar.bz2
hercules-018f3c4278351017b5eb727c0007d69303a53bf5.tar.xz
hercules-018f3c4278351017b5eb727c0007d69303a53bf5.zip
Removed hard coded checks for no use while sitting in Aloevera and Anodyne item.
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index e9855c16d..0dde3cd9e 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -4840,11 +4840,7 @@ int pc_isUseitem(struct map_session_data *sd,int n)
switch( nameid ) { // TODO: Is there no better way to handle this, other than hardcoding item IDs?
case ITEMID_ANODYNE:
- if( map_flag_gvg2(sd->bl.m) )
- return 0;
- /* Fall through */
- case ITEMID_ALOEBERA:
- if( pc_issit(sd) )
+ if (map_flag_gvg2(sd->bl.m))
return 0;
break;
case ITEMID_WING_OF_FLY: