summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-05-16 15:22:16 +0000
committerbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-05-16 15:22:16 +0000
commita3a9b9a5dc441baa552023b3410e11038fe3f0e1 (patch)
tree92196e011ad46923a1ccad9f53fd42785826a089 /src
parent01dc34c9a73819dfbf0e8242a9ba7e572d76955d (diff)
downloadhercules-a3a9b9a5dc441baa552023b3410e11038fe3f0e1.tar.gz
hercules-a3a9b9a5dc441baa552023b3410e11038fe3f0e1.tar.bz2
hercules-a3a9b9a5dc441baa552023b3410e11038fe3f0e1.tar.xz
hercules-a3a9b9a5dc441baa552023b3410e11038fe3f0e1.zip
- Fixed a small typo in a shop name. (bugreport:4235)
- Removed a duplicate 'next' in Kiel Hyre Quest. (bugreport:4222) - Fixed pc_checkitem() running before sending the client the inventory list, resulting in "Unknown Item is taken off" messages. (topic:245385) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14295 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r--src/map/clif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 5f49ac039..f82b83be3 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -8222,8 +8222,8 @@ void clif_parse_LoadEndAck(int fd,struct map_session_data *sd)
clif_refreshlook(&sd->bl,sd->bl.id,LOOK_CLOTHES_COLOR,sd->vd.cloth_color,SELF);
// item
- pc_checkitem(sd);
clif_inventorylist(sd);
+ pc_checkitem(sd);
// cart
if(pc_iscarton(sd)) {