Bugfix Enemy Seagull Not Chasing

This commit is contained in:
Philip W 2024-01-27 15:41:04 +00:00
parent c8b3fb37c0
commit 9e986eb2b2
9 changed files with 16 additions and 12 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
SeagullGame/Content/John/BP_John.uasset (Stored with Git LFS)

Binary file not shown.

View File

@ -239,6 +239,7 @@ void ASeagullGameCharacter::IncreaseJohnsHunger(const float HungerAmount)
if (JohnsCurrentHunger > JohnsMaxHunger)
{
JohnsCurrentHunger = JohnsMaxHunger;
EndGame();
}
}