diff options
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 788896536..c540ea64c 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -14481,8 +14481,8 @@ void clif_showdigit(struct map_session_data* sd, unsigned char type, int value) { WFIFOHEAD(sd->fd, packet_len(0x1b1)); WFIFOW(sd->fd,0) = 0x1b1; - WFIFOB(sd->fd,0) = type; - WFIFOL(sd->fd,0) = value; + WFIFOB(sd->fd,2) = type; + WFIFOL(sd->fd,3) = value; WFIFOSET(sd->fd, packet_len(0x1b1)); } |