1e51ef7def
- Konzept/, didaktik_geografie/, didaktik_simulation/, v2-modules/, v2-platform/ - 12 code-workspace-Files - STATUS-*.md - viele M/D/R-Änderungen an bereits getrackten Files - .gitignore verstärkt: **/.humaninput/, **/secret_keys.txt Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
18 lines
613 B
SQL
18 lines
613 B
SQL
-- Logistik L2: maxActiveContracts 3 -> 5 (mehr Auswahl)
|
|
-- Stand: 2026-04-25
|
|
-- Thomas-Feedback: "Wahrscheinlich brauchen wir mehr Fahrten gleichzeitig.
|
|
-- Als Auswahl meine ich"
|
|
-- Mehr OPEN-Aufträge gleichzeitig sichtbar = bessere Match-Chance pro
|
|
-- Fahrzeug+Hub-Kombination, weniger Verlustgeschäfte erzwungen.
|
|
|
|
SET NAMES utf8mb4;
|
|
|
|
UPDATE game_levels
|
|
SET params = JSON_SET(params, '$.maxActiveContracts', 5)
|
|
WHERE game_id = 'logistik' AND sort_order = 2;
|
|
|
|
-- Verifikation:
|
|
-- SELECT JSON_EXTRACT(params, '$.maxActiveContracts')
|
|
-- FROM game_levels WHERE game_id='logistik' AND sort_order=2;
|
|
-- Erwartet: 5
|