diff --git a/pages/maps.tsx b/pages/maps.tsx index e004aebd8..a43842d68 100644 --- a/pages/maps.tsx +++ b/pages/maps.tsx @@ -79,6 +79,12 @@ const MapsGeneratorPage = () => { ); }; + useEffect(() => { + const maplist = localStorage.getItem("maplist"); + if (!maplist) return; + setMaplist(maplist); + }, []); + useEffect(() => { if (!copied) return; @@ -145,7 +151,7 @@ const MapsGeneratorPage = () => { const stagesAlreadyPicked = new Set(); - const isSZFirst = Math.random() > 0.5; + const isSZFirst = false; return new Array(count) .fill(null) @@ -330,7 +336,11 @@ const MapsGeneratorPage = () => {