mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-19 12:21:34 +00:00
[Bug Fix] Make Perl TakeMoneyFromPP int64 (#2158)
This commit is contained in:
parent
9d784d0d9b
commit
f370a6048f
@ -1432,7 +1432,7 @@ XS(XS_Client_TakeMoneyFromPP) {
|
|||||||
Client *THIS;
|
Client *THIS;
|
||||||
bool has_money;
|
bool has_money;
|
||||||
bool update_client = false;
|
bool update_client = false;
|
||||||
uint32 copper = (uint32) SvUV(ST(1));
|
uint64 copper = (uint64) SvUV(ST(1));
|
||||||
VALIDATE_THIS_IS_CLIENT;
|
VALIDATE_THIS_IS_CLIENT;
|
||||||
|
|
||||||
if (items == 3) {
|
if (items == 3) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user