Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] Last PokéRadar encounter combo box is bugged #38

Closed
SunakazeKun opened this issue Oct 9, 2023 · 1 comment
Closed

[Bug] Last PokéRadar encounter combo box is bugged #38

SunakazeKun opened this issue Oct 9, 2023 · 1 comment

Comments

@SunakazeKun
Copy link
Contributor

SunakazeKun commented Oct 9, 2023

I noticed that the fourth combo box for PokéRadar encounters in DPPT doesn't seem to work properly. My changes to this specific box get ignored whenever I save. This seems to be caused by a copy-paste oversight:

        private void radarFourthComboBox_SelectedIndexChanged(object sender, EventArgs e) {
            if (disableHandlers) { 
                return; 
            }
            currentFile.radarPokemon[3] = (uint)radarThirdComboBox.SelectedIndex;
        }

Fix should be:

            currentFile.radarPokemon[3] = (uint)radarFourthComboBox.SelectedIndex;
@AdAstra-LD
Copy link
Owner

Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants