From d5c1dda11a9c6db4b431ab05d2cca902847a63b3 Mon Sep 17 00:00:00 2001 From: NilsUeter Date: Tue, 23 Jun 2026 18:09:20 +0200 Subject: [PATCH] add 11th edition support --- src/App.jsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/App.jsx b/src/App.jsx index 2643a2e..20a3eb0 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -169,6 +169,13 @@ function App() { setEdition(10); setError(""); } + } else if (gameType == "Warhammer 40,000 11th Edition") { + roster = Create40kRoster10th(doc, gameType); + if (roster && roster.forces.length > 0) { + setRoster(roster); + setEdition(11); + setError(""); + } } else { setError("No support for game type '" + gameType + "'."); }