Merge pull request #1986 from AsparagusEduardo/BE_steamEngine

Added Steam Engine's overworld effect
This commit is contained in:
ultima-soul 2021-12-16 16:15:58 -08:00 committed by GitHub
commit 961710ddd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -877,7 +877,9 @@ u8 GetEggCyclesToSubtract(void)
if (!GetMonData(&gPlayerParty[i], MON_DATA_SANITY_IS_EGG))
{
u16 ability = GetMonAbility(&gPlayerParty[i]);
if (ability == ABILITY_MAGMA_ARMOR || ability == ABILITY_FLAME_BODY)
if (ability == ABILITY_MAGMA_ARMOR
|| ability == ABILITY_FLAME_BODY
|| ability == ABILITY_STEAM_ENGINE)
return 2;
}
}