diff --git a/App/sims/weltkueche/assets/data/production-matrix.json b/App/sims/weltkueche/assets/data/production-matrix.json index a5b0ed8..d91b292 100644 --- a/App/sims/weltkueche/assets/data/production-matrix.json +++ b/App/sims/weltkueche/assets/data/production-matrix.json @@ -3487,7 +3487,8 @@ "fact": "Eier können prinzipiell überall produziert werden — Hühner sind extrem anpassungsfähig. Die meisten Eier in Europa werden lokal gegessen.", "correct_for": { "oesterreich": [ - "slowakei" + "deutschland", + "niederlande" ] } }, diff --git a/App/sims/weltkueche/game.html b/App/sims/weltkueche/game.html index 0650ec6..d49845f 100644 --- a/App/sims/weltkueche/game.html +++ b/App/sims/weltkueche/game.html @@ -1108,9 +1108,10 @@ function buildTaskFor(ingKey) { shuffleInPlace(farProducers); shuffleInPlace(climatePossible); shuffleInPlace(impossible); const distr = []; - if (farProducers[0]) distr.push(farProducers[0]); // wächst dort, aber weit weg + const distrTarget = Math.max(0, 5 - correct.length); // NORM: immer 5 Karten — 2 richtig→3 Distr., 3 richtig→2 Distr. + if (farProducers[0] && distr.length < distrTarget) distr.push(farProducers[0]); // wächst dort, aber weit weg for (const c of [...impossible, ...climatePossible]) { // klimafremd / kein Markt - if (distr.length >= 3) break; + if (distr.length >= distrTarget) break; if (!distr.includes(c) && !correct.includes(c)) distr.push(c); }