From d66c179e86cd46c73bdd76f1d3ced3261167762d Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Sun, 2 Nov 2025 18:46:05 +0100 Subject: [PATCH] smz3 hash --- resources/js/components/rounds/SeedCode.jsx | 2 +- resources/js/components/rounds/SeedCodeInput.jsx | 2 +- resources/sass/rounds.scss | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/resources/js/components/rounds/SeedCode.jsx b/resources/js/components/rounds/SeedCode.jsx index 2f74279..fbe187c 100644 --- a/resources/js/components/rounds/SeedCode.jsx +++ b/resources/js/components/rounds/SeedCode.jsx @@ -5,7 +5,7 @@ import ZeldaIcon from '../common/ZeldaIcon'; const SeedCode = ({ code, game }) => - {code.map(game === 'smr' + {code.map(['smr', 'smz3'].includes(game) ? (symbol, index) => {symbol} : (symbol, index) => )} diff --git a/resources/js/components/rounds/SeedCodeInput.jsx b/resources/js/components/rounds/SeedCodeInput.jsx index 958c927..9ab199c 100644 --- a/resources/js/components/rounds/SeedCodeInput.jsx +++ b/resources/js/components/rounds/SeedCodeInput.jsx @@ -106,7 +106,7 @@ const SeedCodeInput = ({ )} ; } - if (game === 'smr') { + if (['smr', 'smz3'].includes(game)) { return
diff --git a/resources/sass/rounds.scss b/resources/sass/rounds.scss index 2ff6221..83c56a8 100644 --- a/resources/sass/rounds.scss +++ b/resources/sass/rounds.scss @@ -64,7 +64,8 @@ flex-wrap: nowrap; } - &.game-smr { + &.game-smr, + &.game-smz3 { display: inline-grid; grid-template-columns: 1fr 1fr; > span { -- 2.47.2