diff options
author | markzd <markzd@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2013-01-08 05:31:06 +0000 |
---|---|---|
committer | markzd <markzd@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2013-01-08 05:31:06 +0000 |
commit | 5d1712c1483dd106d067256db5728c41e0676177 (patch) | |
tree | af54c995977893556d030f7ee75398a76d6bb895 /src/map/pc.c | |
parent | eaf2728d7f5b47e316b07608cb264bc8de2dd4cc (diff) | |
download | hercules-5d1712c1483dd106d067256db5728c41e0676177.tar.gz hercules-5d1712c1483dd106d067256db5728c41e0676177.tar.bz2 hercules-5d1712c1483dd106d067256db5728c41e0676177.tar.xz hercules-5d1712c1483dd106d067256db5728c41e0676177.zip |
* Renaming variable name from nsiuid to unique_id for better understanding of its meaning, as requested on tid:69380.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@17086 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 5c839385b..f06d48779 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -3837,8 +3837,8 @@ int pc_additem(struct map_session_data *sd,struct item *item_data,int amount,e_l clif_additem(sd,i,amount,0); } #ifdef NSI_UNIQUE_ID - if( !itemdb_isstackable2(data) && !item_data->nsiuid ) - sd->status.inventory[i].nsiuid = itemdb_nsiuid(0,0); + if( !itemdb_isstackable2(data) && !item_data->unique_id ) + sd->status.inventory[i].unique_id = itemdb_unique_id(0,0); #endif log_pick_pc(sd, log_type, amount, &sd->status.inventory[i]); |