Fix shiny Bidoof back sprite showing as epic variant
This commit is contained in:
parent
9f3bef0142
commit
0eabfd56e3
Binary file not shown.
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 12 KiB |
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"0": {
|
||||
"2": {
|
||||
"634a31": "101e42",
|
||||
"c58c42": "617dda",
|
||||
"9c6331": "3e5ca8",
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue