Fix shiny Bidoof back sprite showing as epic variant

pull/301/head
Flashfyre 2024-04-25 21:56:44 -04:00
parent 9f3bef0142
commit 0eabfd56e3
3 changed files with 3 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,5 +1,5 @@
{
"0": {
"2": {
"634a31": "101e42",
"c58c42": "617dda",
"9c6331": "3e5ca8",

View File

@ -96,7 +96,7 @@ export default class MenuUiHandler extends MessageUiHandler {
ui.revertMode();
ui.showText(message, null, () => {
const config: OptionSelectConfig = {
options: new Array(3).fill(null).map((_, i) => i).filter(slotFilter).map(i => {
options: new Array(5).fill(null).map((_, i) => i).filter(slotFilter).map(i => {
return {
label: i18next.t('menuUiHandler:slot', {slotNumber: i+1}),
handler: () => {
@ -135,7 +135,7 @@ export default class MenuUiHandler extends MessageUiHandler {
handler: () => {
const dataSlots: integer[] = [];
Promise.all(
new Array(3).fill(null).map((_, i) => {
new Array(5).fill(null).map((_, i) => {
const slotId = i;
return this.scene.gameData.getSession(slotId).then(data => {
if (data)