mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
This commit is contained in:
commit
40bbb70799
1 changed files with 5 additions and 3 deletions
|
@ -395,10 +395,12 @@ void DBot::WhatToGet (AActor *item)
|
|||
else if (item->GetClass()->TypeName == NAME_Megasphere || item->IsKindOf(NAME_Health))
|
||||
{
|
||||
// do the test with the health item that's actually given.
|
||||
if (item->GetClass()->TypeName == NAME_Megasphere) item = GetDefaultByName("MegasphereHealth");
|
||||
if (item != nullptr)
|
||||
AActor* const testItem = NAME_Megasphere == item->GetClass()->TypeName
|
||||
? GetDefaultByName("MegasphereHealth")
|
||||
: item;
|
||||
if (nullptr != testItem)
|
||||
{
|
||||
int maxhealth = P_GetRealMaxHealth(player->mo, item->IntVar(NAME_MaxAmount));
|
||||
const int maxhealth = P_GetRealMaxHealth(player->mo, testItem->IntVar(NAME_MaxAmount));
|
||||
if (player->mo->health >= maxhealth)
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue