diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-02-25 04:53:27 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-02-25 04:53:27 +0000 |
commit | bb5027a35309913803fe7063bebbef044b86cec2 (patch) | |
tree | 9de22b48939986a6fee54dc300ee00c09f8c7742 /src/map/party.c | |
parent | 25ca739c12a1e73b7095b81cac803eba32561428 (diff) | |
download | hercules-bb5027a35309913803fe7063bebbef044b86cec2.tar.gz hercules-bb5027a35309913803fe7063bebbef044b86cec2.tar.bz2 hercules-bb5027a35309913803fe7063bebbef044b86cec2.tar.xz hercules-bb5027a35309913803fe7063bebbef044b86cec2.zip |
- You are allowed to attack/use skills now when your cloaking level is below 3.
- Small change to Stone Curse that may fix the permanent "semi-stone" status.
- Corrected "taming monster" having your skill-use be stuck if you cancel the target selection process.
- config setting party_show_share_picker now displays the jname of the item picked as well.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9914 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/party.c')
-rw-r--r-- | src/map/party.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/party.c b/src/map/party.c index 5b9e19497..99b9f3660 100644 --- a/src/map/party.c +++ b/src/map/party.c @@ -825,7 +825,7 @@ int party_share_loot(struct party_data *p, TBL_PC *sd, struct item *item_data, i //Logs if(battle_config.party_show_share_picker && target != sd){ char output[80]; - sprintf(output, "%s acquired the item.",target->status.name); + sprintf(output, "%s acquired %s.",target->status.name, itemdb_jname(item_data->nameid)); clif_disp_onlyself(sd,output,strlen(output)); } return 0; |