summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog-Trunk.txt2
-rw-r--r--src/map/skill.c4
2 files changed, 5 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index ce9a5fc63..54e510b6f 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/09/14
+ * Added a clif_skill_nodamage packet when using Repair Weapon, just to see
+ what happens. [Skotlex]
* Likely fixed "half" of the alliance being saved, which ends up in guilds
that can attack another, but not viceversa. [Skotlex]
* Added deleting of saved Status changes on character delete for the
diff --git a/src/map/skill.c b/src/map/skill.c
index 51f3286e3..53cbb7f6f 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -4309,8 +4309,10 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, in
break;
case BS_REPAIRWEAPON:
- if(sd && dstsd)
+ if(sd && dstsd) {
+ clif_skill_nodamage(src,bl,skillid,skilllv,1);
clif_item_repair_list(sd,dstsd);
+ }
break;
case MC_IDENTIFY: