mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
Replace two casts with one
This commit is contained in:
parent
22de531ab3
commit
6427b097ab
@ -1646,11 +1646,12 @@ void Entity::PickupItem(const LWOOBJID& objectID) {
|
|||||||
|
|
||||||
bool Entity::CanPickupCoins(uint64_t count) { // bool because we are returning whether they can pick up the coins
|
bool Entity::CanPickupCoins(uint64_t count) { // bool because we are returning whether they can pick up the coins
|
||||||
if (!IsPlayer()) return false;
|
if (!IsPlayer()) return false;
|
||||||
auto droppedcoins = static_cast<Player*>(this)->GetDroppedCoins();
|
auto * player = static_cast<Player*>(this);
|
||||||
|
auto droppedcoins = player->GetDroppedCoins();
|
||||||
if (count > droppedcoins) {
|
if (count > droppedcoins) {
|
||||||
return false;
|
return false;
|
||||||
} else {
|
} else {
|
||||||
static_cast<Player*>(this)->SetDroppedCoins(droppedcoins - count);
|
player->SetDroppedCoins(droppedcoins - count);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user