Changes asked for by Wincent

This commit is contained in:
Jett
2021-12-11 13:57:15 +00:00
parent b6453376e4
commit 22de531ab3
3 changed files with 6 additions and 6 deletions

View File

@@ -1032,7 +1032,7 @@ void GameMessages::SendDropClientLoot(Entity* entity, const LWOOBJID& sourceID,
}
if (item == LOT_NULL && currency != 0) {
entity->DropCoins(currency);
entity->RegisterCoinDrop(currency);
}
if (spawnPos != NiPoint3::ZERO) {
@@ -5239,7 +5239,7 @@ void GameMessages::HandlePickupCurrency(RakNet::BitStream* inStream, Entity* ent
if (currency == 0) return;
auto* ch = entity->GetCharacter();
if (entity->PickupCoins(currency)) {
if (entity->CanPickupCoins(currency)) {
ch->SetCoins(ch->GetCoins() + currency);
}
}