diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-11-28 22:43:10 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-11-28 22:43:10 +0000 |
commit | f5211cd347e39ea4c97c354006811cd251961687 (patch) | |
tree | 2b333464005bbb08bd465d9dceafb73018d97b11 /src/map/script.c | |
parent | dc1175bda087b4b4ce657a114225b5daefbcf5c4 (diff) | |
download | hercules-f5211cd347e39ea4c97c354006811cd251961687.tar.gz hercules-f5211cd347e39ea4c97c354006811cd251961687.tar.bz2 hercules-f5211cd347e39ea4c97c354006811cd251961687.tar.xz hercules-f5211cd347e39ea4c97c354006811cd251961687.zip |
* Added emotion_type enumeration for clif_emotion constants.
- Made clif_parse_Emotion use clif_emotion, rather than having it's code inlined.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14518 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script.c b/src/map/script.c index c6c9c3591..abc183a6a 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -8693,7 +8693,7 @@ BUILDIN_FUNC(homunculus_evolution) if (sd->hd->homunculus.intimacy > 91000) merc_hom_evolution(sd->hd); else - clif_emotion(&sd->hd->bl, 4) ; //swt + clif_emotion(&sd->hd->bl, E_SWT); } return 0; } |