function rename

This commit is contained in:
jadebenn
2023-12-13 01:06:58 -06:00
parent 775e4fee9e
commit 2a4cfe3447
3 changed files with 4 additions and 4 deletions

View File

@@ -896,12 +896,12 @@ void PetComponent::OnInteract() {
switch (GetInteractType()) {
case PetInteractType::bouncer:
if (GetIsReadyToInteract()) LOG_DEBUG("Add the HandleInteractBouncer()!");
if (IsReadyToInteract()) LOG_DEBUG("Add the HandleInteractBouncer()!");
else SetupInteractBouncer();
break;
case PetInteractType::treasure:
if (GetIsReadyToInteract()) HandleInteractTreasureDig();
if (IsReadyToInteract()) HandleInteractTreasureDig();
else SetupInteractTreasureDig();
break;