Forum Thread
odd resends
Forum-Index → Bug Reports → Resolved → odd resendsWhen you retrieve your Rumblers, if they all are on the same Area, and you change the Area for one Pokémon, it seems that all the other Rumblers go to the other Area too, because the Image changes for all of them, but they go to the same area as before, and that's confusing
For example. Let's say all my Pokemon are on Windy Praire. I change Chandelure's area to Silent Forest. Then all the images show Silent Forest, when the only one that is going to Silent Forest is Chandelure. If you send them to the Rumble, then the only one that goes to Silent Forest is Chandelure, the others still go to Windy Praire
Kitties! Riako has no idea what he unleashed with that update🙀
Collecting Lovely Larvesta and Silly Seel Plushies~
Looking for Ice Gems and Flying Gems here! Help me hunt a Shiny Articuno!
(You can win your own non-shiny Articuno in return)
Breeding events for the cause here!
Since I use mostly windy prairie, this was my starting screen when preparing to resend the rumblers
Normally, when you click on any of the 6 rocky cave images for any of the six rumblers, it will change to this:
This is when problems occurs, despite all having rocky cave as their mission, only the one that I clicked will go there.
So let's make a little test: I clicked images in this order:
Rocky cave for the first pokemon.
Windy prairie for the second.
Cave for the third.
Prairie for the forth.
Cave for the fifth.
Prairie for the sixth.
Now all should go to to windy prairie, everything would look like in the first screen shot. But thanks to the glitch this will happen:
File:
rumble_overview
Current Script:
function selectResendArea(pkmn, area) {
$("[class^=rumble_resend_area]").css('opacity', 0.4);
$(".rumble_resend_area" + area).css('opacity', 1);
$(".rumbler_window" + pkmn).find("input.resendArea").val(area);
}
Working Script:
function selectResendArea(pkmn, area) {
$(".rumbler_window" + pkmn).find("[class^=rumble_resend_area]").css('opacity', 0.4);
$(".rumbler_window" + pkmn).find(".rumble_resend_area" + area).css('opacity', 1);
$(".rumbler_window" + pkmn).find("input.resendArea").val(area);
}