diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-12 02:30:26 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-12 02:30:26 +0000 |
commit | 5cf361411259af0c0afa5b4109ee2fda90d0a3bb (patch) | |
tree | 265a4305326f932df258a13f290a2c4a5d68d997 /src/map | |
parent | cfe7a018ed95f18c8523ed8ba66764800d21a146 (diff) | |
download | hercules-5cf361411259af0c0afa5b4109ee2fda90d0a3bb.tar.gz hercules-5cf361411259af0c0afa5b4109ee2fda90d0a3bb.tar.bz2 hercules-5cf361411259af0c0afa5b4109ee2fda90d0a3bb.tar.xz hercules-5cf361411259af0c0afa5b4109ee2fda90d0a3bb.zip |
- Oops, should have fixed the crash in intif gm message.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7626 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/intif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/intif.c b/src/map/intif.c index 35fe41d99..9f20d3a9c 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -837,10 +837,10 @@ static int mapif_parse_WisToGM_sub(struct map_session_data* sd,va_list va) { char *message;
int len;
if (pc_isGM(sd) < min_gm_level) return 0;
- clif_wis_message(sd->fd, wisp_name, message, len);
wisp_name = va_arg(va, char*);
message = va_arg(va, char*);
len = va_arg(va, int);
+ clif_wis_message(sd->fd, wisp_name, message, len);
return 1;
}
|