diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-05 23:06:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-05 23:06:20 +0300 |
commit | 20e70d1846ba39599255887bef5098583a7586c9 (patch) | |
tree | 5eff327cd4c3d515c32044886140ee1787b9ed9b /src/map/pc.c | |
parent | 694e3cd9efae509c5cec3d50bc17d037fd71733e (diff) | |
download | evol-hercules-20e70d1846ba39599255887bef5098583a7586c9.tar.gz evol-hercules-20e70d1846ba39599255887bef5098583a7586c9.tar.bz2 evol-hercules-20e70d1846ba39599255887bef5098583a7586c9.tar.xz evol-hercules-20e70d1846ba39599255887bef5098583a7586c9.zip |
Replace struct flooritem_data to TBL_ITEM.
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 78c6d5f..594b1c0 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -155,7 +155,7 @@ bool epc_can_attack (TBL_PC *sd, int *target_id) } int epc_takeitem(TBL_PC *sd __attribute__ ((unused)), - struct flooritem_data *fitem) + TBL_ITEM *fitem) { if (!fitem) return 0; |