diff options
author | Ibrahim Zidan <brahem@aotsw.com> | 2019-04-13 21:17:11 +0200 |
---|---|---|
committer | Ibrahim Zidan <brahem@aotsw.com> | 2019-05-05 23:28:09 +0200 |
commit | a8f85f757435bc6f409d78612b53e4c3c531abb9 (patch) | |
tree | cf138fb324be44135e7037e3711f5f12136cf770 /src/map/searchstore.h | |
parent | bd1c1bb39b3d69fba175bda94af4e9d1149fbbb5 (diff) | |
download | hercules-a8f85f757435bc6f409d78612b53e4c3c531abb9.tar.gz hercules-a8f85f757435bc6f409d78612b53e4c3c531abb9.tar.bz2 hercules-a8f85f757435bc6f409d78612b53e4c3c531abb9.tar.xz hercules-a8f85f757435bc6f409d78612b53e4c3c531abb9.zip |
Fix variables shadowing refine interface variable map-server source
Signed-off-by: Ibrahim Zidan <brahem@aotsw.com>
Diffstat (limited to 'src/map/searchstore.h')
-rw-r--r-- | src/map/searchstore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/searchstore.h b/src/map/searchstore.h index e5ccfd300..71d562679 100644 --- a/src/map/searchstore.h +++ b/src/map/searchstore.h @@ -109,7 +109,7 @@ struct searchstore_interface { void (*click) (struct map_session_data* sd, int account_id, int store_id, int nameid); bool (*queryremote) (struct map_session_data* sd, int account_id); void (*clearremote) (struct map_session_data* sd); - bool (*result) (struct map_session_data* sd, unsigned int store_id, int account_id, const char* store_name, int nameid, unsigned short amount, unsigned int price, const int* card, unsigned char refine, const struct item_option *option); + bool (*result) (struct map_session_data* sd, unsigned int store_id, int account_id, const char* store_name, int nameid, unsigned short amount, unsigned int price, const int* card, unsigned char refine_level, const struct item_option *option); }; #ifdef HERCULES_CORE |