Skip to content

Commit

Permalink
Fixed silent Klefki cry (rh-hideout#4392)
Browse files Browse the repository at this point in the history
* Fixed Klefki's cry not being hearable

* Added warning to family toggle file
  • Loading branch information
AsparagusEduardo authored and Pawkkie committed May 16, 2024
1 parent c73747c commit db631a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions include/config/species_enabled.h
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions sound/cry_tables.inc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -4111,7 +4111,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
Expand Down

0 comments on commit db631a8

Please sign in to comment.