diff options
author | scnorton <scnorton@biociphers.org> | 2017-06-21 12:49:24 -0400 |
---|---|---|
committer | scnorton <scnorton@biociphers.org> | 2017-06-21 12:49:24 -0400 |
commit | 596fd9b6547f247fe21d71b8d432cd68905d288d (patch) | |
tree | 35c0d93ffa8fc74bece9e0e07d7b1c0a11b62423 | |
parent | 99f9d40be14633630503ebcd75787fc7fdfe1486 (diff) |
Fix this value
-rwxr-xr-x | src/field_specials.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/field_specials.c b/src/field_specials.c index 341071570..9cd49932c 100755 --- a/src/field_specials.c +++ b/src/field_specials.c @@ -1886,7 +1886,7 @@ void PutZigzagoonInPlayerParty(void) { u16 monData; CreateMon(&gPlayerParty[0], SPECIES_ZIGZAGOON, 7, 0x20, FALSE, 0, FALSE, 0); - monData = ABILITY_STENCH; + monData = TRUE; SetMonData(&gPlayerParty[0], MON_DATA_ALT_ABILITY, (u8 *)&monData); monData = MOVE_TACKLE; SetMonData(&gPlayerParty[0], MON_DATA_MOVE1, (u8 *)&monData); |