Fixed silent Klefki cry (#4392)
* Fixed Klefki's cry not being hearable * Added warning to family toggle file
This commit is contained in:
parent
952183889a
commit
fbff04d4e3
2 changed files with 5 additions and 2 deletions
|
@ -1,6 +1,9 @@
|
|||
#ifndef GUARD_CONFIG_SPECIES_ENABLED_H
|
||||
#define GUARD_CONFIG_SPECIES_ENABLED_H
|
||||
|
||||
// WARNING: For some reason, using 1/0 instead of TRUE/FALSE causes cry IDs to be shifted.
|
||||
// Please use TRUE/FALSE when using the family toggles.
|
||||
|
||||
// Modifying the latest generation WILL change the saveblock due to Dex flags and will require a new save file.
|
||||
// Generations of Pokémon are defined by the first member introduced,
|
||||
// so Pikachu depends on the Gen 1 setting despite Pichu being the lowest member of the evolution tree.
|
||||
|
|
|
@ -1707,7 +1707,7 @@ gCryTable::
|
|||
cry Cry_Goodra
|
||||
.endif @ P_FAMILY_GOOMY
|
||||
.if P_FAMILY_KLEFKI == TRUE
|
||||
cry Cry_Klefki
|
||||
cry_uncomp Cry_Klefki @ Cannot be heard unless we use cry_uncomp here.
|
||||
.endif @ P_FAMILY_KLEFKI
|
||||
.if P_FAMILY_PHANTUMP == TRUE
|
||||
cry Cry_Phantump
|
||||
|
@ -4133,7 +4133,7 @@ gCryTable_Reverse::
|
|||
cry_reverse Cry_Goodra
|
||||
.endif @ P_FAMILY_GOOMY
|
||||
.if P_FAMILY_KLEFKI == TRUE
|
||||
cry_reverse Cry_Klefki
|
||||
cry_reverse_uncomp Cry_Klefki @ Cannot be heard unless we use cry_reverse_uncomp here.
|
||||
.endif @ P_FAMILY_KLEFKI
|
||||
.if P_FAMILY_PHANTUMP == TRUE
|
||||
cry_reverse Cry_Phantump
|
||||
|
|
Loading…
Reference in a new issue