diff options
author | shennetsind <ind@henn.et> | 2013-11-07 17:05:56 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-11-07 17:05:56 -0200 |
commit | 8083daec0d94f78510411c9b225abcfa7e829e95 (patch) | |
tree | c872c4b13d0853c2acf426cdf85dd25d010e3974 /src/map/storage.c | |
parent | b9b32ac7609e33c21b488d722103cc0eea16b12c (diff) | |
download | hercules-8083daec0d94f78510411c9b225abcfa7e829e95.tar.gz hercules-8083daec0d94f78510411c9b225abcfa7e829e95.tar.bz2 hercules-8083daec0d94f78510411c9b225abcfa7e829e95.tar.xz hercules-8083daec0d94f78510411c9b225abcfa7e829e95.zip |
Further item bind adjustments
Thanks to Haruna!
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/storage.c')
-rw-r--r-- | src/map/storage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/storage.c b/src/map/storage.c index 0a2e6d118..db85b3c98 100644 --- a/src/map/storage.c +++ b/src/map/storage.c @@ -141,7 +141,7 @@ int storage_additem(struct map_session_data* sd, struct item* item_data, int amo return 1; } - if( item_data->bound > IBT_ACCOUNT && !pc->can_give_bounded_items(sd) ) { + if( item_data->bound > IBT_ACCOUNT && !pc->can_give_bound_items(sd) ) { clif->message(sd->fd, msg_txt(294)); return 1; } @@ -441,7 +441,7 @@ int guild_storage_additem(struct map_session_data* sd, struct guild_storage* sto return 1; } - if( item_data->bound && item_data->bound != IBT_GUILD && !pc->can_give_bounded_items(sd) ) { + if( item_data->bound && item_data->bound != IBT_GUILD && !pc->can_give_bound_items(sd) ) { clif->message(sd->fd, msg_txt(294)); return 1; } |