From: Daniel Karbach Date: Sun, 2 Nov 2025 17:46:05 +0000 (+0100) Subject: smz3 hash X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=refs%2Fheads%2Fmaster;p=alttp.git smz3 hash --- 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 {