blame 79f4600 @lighta changed it to unsigned by accident
This commit is contained in:
Lemongrass3110 2015-11-10 14:29:43 +01:00
parent b69d9b0db2
commit 9ca5dc40bd

View File

@ -7674,7 +7674,7 @@ void clif_mvp_exp(struct map_session_data *sd, unsigned int exp)
fd=sd->fd;
WFIFOHEAD(fd,packet_len(0x10b));
WFIFOW(fd,0)=0x10b;
WFIFOL(fd,2)=min(exp,UINT32_MAX);
WFIFOL(fd,2)=min(exp,(unsigned int)INT32_MAX);
WFIFOSET(fd,packet_len(0x10b));
}