summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-03-20 16:51:11 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-03-20 16:51:11 +0000
commit2f45dbbd00c0152591a26e032e67f738cf3d129e (patch)
tree9a1566450fc3d70e14730cfde8f80e1c7378977b
parent17b92544ea550007051fa23aea7e5bda72ccbfae (diff)
downloadhercules-2f45dbbd00c0152591a26e032e67f738cf3d129e.tar.gz
hercules-2f45dbbd00c0152591a26e032e67f738cf3d129e.tar.bz2
hercules-2f45dbbd00c0152591a26e032e67f738cf3d129e.tar.xz
hercules-2f45dbbd00c0152591a26e032e67f738cf3d129e.zip
- Added Magic Rod's "action" pose when using it.
- Corrected a pluralization typo in item_db.txt git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10041 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--doc/item_db.txt4
-rw-r--r--src/map/skill.c1
2 files changed, 3 insertions, 2 deletions
diff --git a/doc/item_db.txt b/doc/item_db.txt
index 72a14b915..08abd8694 100644
--- a/doc/item_db.txt
+++ b/doc/item_db.txt
@@ -126,8 +126,8 @@ View: For normal items, defines a replacement view-sprite for the item (eg:
3: Bullets
4: Shells
5: Grenades
- 6: Shurikens
- 7: Kunais
+ 6: Shuriken
+ 7: Kunai
Script: Script to execute when the item is used/equipped.
diff --git a/src/map/skill.c b/src/map/skill.c
index bc00db58c..62721eea9 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -4754,6 +4754,7 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, in
}
break;
case SA_MAGICROD:
+ clif_skill_nodamage(src,bl,skillid,-1,0); //Skill animation with no yell.
sc_start(bl,type,100,skilllv,skill_get_time(skillid,skilllv));
break;
case SA_AUTOSPELL: