Skeli789 / Complete-Fire-Red-Upgrade

A complete upgrade for FireRed, including an upgraded Battle Engine.
592 stars 273 forks source link

Random pokemon pickup items as well #78

Open Gabbyxo97 opened 3 years ago

Gabbyxo97 commented 3 years ago

Normally in Pokémon only a Pokémon with pickup can pickup items. Though I've noticed - and I'm pretty sure this is only when a pickup Pokémon is in the party - other Pokémon without the ability sometimes pick up items as well which shouldn't happen.

ThePyxal commented 3 years ago

To fix the bug of pickup activating for every pokemon in your party that comes after the pickup user, in general_bs_commands.c, add this at line 4785:

                break;

            default:
                chance = 0;
                item = ITEM_NONE;

Hope this helps!