summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-27 14:43:55 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-27 14:43:55 +0000
commit6f919a083e4f31afd4ec7b8e1451afda32526aa2 (patch)
tree4a50e66703a38cf09373777481841516a4ff7958 /src/map/clif.c
parentedc5f649cbd8806b91f2ee2b65a458ca6ce22d2c (diff)
downloadhercules-6f919a083e4f31afd4ec7b8e1451afda32526aa2.tar.gz
hercules-6f919a083e4f31afd4ec7b8e1451afda32526aa2.tar.bz2
hercules-6f919a083e4f31afd4ec7b8e1451afda32526aa2.tar.xz
hercules-6f919a083e4f31afd4ec7b8e1451afda32526aa2.zip
- Fixed the compilation error. Gee, how did that slipped by...
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6315 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index d9360c3b5..4fdccec63 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -4404,7 +4404,7 @@ int clif_skill_damage2(struct block_list *src,struct block_list *dst,
WBUFW(buf,24)=dst->x;
WBUFW(buf,26)=dst->y;
if (battle_config.hide_woe_damage && map_flag_gvg(src->m)) {
- WBUFW(buf,28)=-1
+ WBUFW(buf,28)=-1;
} else {
WBUFW(buf,28)=damage;
}