summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcelest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-21 17:30:03 +0000
committercelest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-21 17:30:03 +0000
commit2ffd8efbee6c4c41d559754c1dcefc4da3b66ef7 (patch)
tree45ec90659d9140b26d518dc7e58c7e6a6476c7d0
parentd6b7b667e54c411c89f88c63a5f075038d7efdab (diff)
downloadhercules-2ffd8efbee6c4c41d559754c1dcefc4da3b66ef7.tar.gz
hercules-2ffd8efbee6c4c41d559754c1dcefc4da3b66ef7.tar.bz2
hercules-2ffd8efbee6c4c41d559754c1dcefc4da3b66ef7.tar.xz
hercules-2ffd8efbee6c4c41d559754c1dcefc4da3b66ef7.zip
Moved some code in pc_break_equip that was causing compile errors
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@704 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog.txt1
-rw-r--r--src/map/pc.c9
2 files changed, 6 insertions, 4 deletions
diff --git a/Changelog.txt b/Changelog.txt
index b5f1a0b11..cad8451ac 100644
--- a/Changelog.txt
+++ b/Changelog.txt
@@ -1,5 +1,6 @@
Date Added
12/21
+ * Moved some code in pc_break_equip that was causing compile errors [celest]
* guild skills vanished due to incorrect placement of a
check for quest skills in the calc_skilltree code [MouseJstr]
* Fixed skill LK_HEADCRUSH, LK_JOINTBEAT to work on both on
diff --git a/src/map/pc.c b/src/map/pc.c
index 5f55bfc51..076d72c18 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -637,13 +637,14 @@ int pc_break_equip(struct map_session_data *sd, unsigned short where)
item=sd->inventory_data[i];
sd->status.inventory[i].attribute = 1;
pc_unequipitem(sd,i,0);
+ sprintf(output, "%s has broken.",item->jname);
+ clif_emotion(&sd->bl,23);
+ clif_displaymessage(sd->fd, output);
+ clif_equiplist(sd);
break;
}
}
- sprintf(output, "%s has broken.",item->jname);
- clif_emotion(&sd->bl,23);
- clif_displaymessage(sd->fd, output);
- clif_equiplist(sd);
+
return 0;
}