summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authormomacabu <momacabu@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-12-27 19:16:31 +0000
committermomacabu <momacabu@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-12-27 19:16:31 +0000
commit7bc364399bfd259bde5408c9e16e8ba3d01ff29a (patch)
tree6dc5399aed740de242b970915b1d96efb4c4282a /src/map/clif.c
parent847a41f41dc4296c8c2aa42a79c23336f55e665b (diff)
downloadhercules-7bc364399bfd259bde5408c9e16e8ba3d01ff29a.tar.gz
hercules-7bc364399bfd259bde5408c9e16e8ba3d01ff29a.tar.bz2
hercules-7bc364399bfd259bde5408c9e16e8ba3d01ff29a.tar.xz
hercules-7bc364399bfd259bde5408c9e16e8ba3d01ff29a.zip
* Fixed bugreport:4687, @lostskill was removing the skill from skill tree and not disabling it (making it grey);
* Fixed mercenary window not showing up critical (bugreport:2369). git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@17050 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 5c2f56d38..4b2eb4c75 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -4698,9 +4698,8 @@ void clif_deleteskill(struct map_session_data *sd, int id)
WFIFOW(fd,0) = 0x441;
WFIFOW(fd,2) = id;
WFIFOSET(fd,packet_len(0x441));
-#else
- clif_skillinfoblock(sd);
#endif
+ clif_skillinfoblock(sd);
}