mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-26 15:37:16 +00:00
[Bug Fix] Make Perl TakeMoneyFromPP int64 (#2158)
This commit is contained in:
@@ -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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user