]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/rounds/SeedCodeInput.js
remove some useless svg groups
[alttp.git] / resources / js / components / rounds / SeedCodeInput.js
index 03dd6820179e64bfde4134b6abffb5ecb6875fed..2431ca3a2d3b9b36b32ef6209fa5ca63507754bf 100644 (file)
@@ -7,7 +7,6 @@ import i18n from '../../i18n';
 
 const ALTTPR_CODES = [
        'big-key',
-       'bow',
        'blue-boomerang',
        'bomb',
        'bombos',
@@ -38,6 +37,7 @@ const ALTTPR_CODES = [
        'powder',
        'quake',
        'shovel',
+       'somaria',
 ];
 
 const SMR_CODES = [
@@ -88,7 +88,7 @@ const SeedCodeInput = ({
                        .map(code => ({ code, label: i18n.t(`icon.zelda.${code}`)}))
                        .sort((a, b) => a.label.localeCompare(b.label));
                return <div
-                       className={`${className} seed-code-input-alttpr`}
+                       className={`${className} seed-code-input game-alttpr`}
                >
                        {[0, 1, 2, 3, 4].map(num =>
                                <Form.Select
@@ -108,7 +108,7 @@ const SeedCodeInput = ({
        }
        if (game === 'smr') {
                return <div
-                       className={`${className} seed-code-input-smr`}
+                       className={`${className} seed-code-input game-smr`}
                >
                        {[0, 1, 2, 3].map(num =>
                                <Form.Select
@@ -127,7 +127,7 @@ const SeedCodeInput = ({
                </div>;
        }
        return <div
-               className={`${className} seed-code-input-default`}
+               className={`${className} seed-code-input`}
        >
                {[0, 1, 2, 3, 4].map(num =>
                        <Form.Control