mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-25 04:37:13 -05:00
Add 3.0 stages to planner Closes #1287
This commit is contained in:
@@ -297,8 +297,6 @@ function WeaponImageSelector({
|
||||
);
|
||||
}
|
||||
|
||||
const stageIdsWithBackgrounds = stageIds.slice(0, 14);
|
||||
|
||||
function StageBackgroundSelector({
|
||||
onAddBackground,
|
||||
}: {
|
||||
@@ -322,7 +320,7 @@ function StageBackgroundSelector({
|
||||
onChange={(e) => setStageId(Number(e.target.value) as StageId)}
|
||||
aria-label="Select stage"
|
||||
>
|
||||
{stageIdsWithBackgrounds.map((stageId) => {
|
||||
{stageIds.map((stageId) => {
|
||||
return (
|
||||
<option value={stageId} key={stageId}>
|
||||
{t(`game-misc:STAGE_${stageId}`)}
|
||||
|
||||
Reference in New Issue
Block a user