Fixed typo.

This commit is contained in:
Ariel Antonitis 2021-04-24 18:56:36 -04:00
parent 7456e3ce14
commit e71c3dbd1b

View file

@ -1716,7 +1716,7 @@ void UpdateFollowingPokemon(void) { // Update following pokemon if any
void RemoveFollowingPokemon(void) { // Remove follower object. Idempotent. void RemoveFollowingPokemon(void) { // Remove follower object. Idempotent.
struct ObjectEvent *objectEvent = GetFollowerObject(); struct ObjectEvent *objectEvent = GetFollowerObject();
if (objectEvent == NULL)g if (objectEvent == NULL)
return; return;
RemoveObjectEvent(objectEvent); RemoveObjectEvent(objectEvent);
} }