diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2025-09-08 23:07:24 +0200 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2025-09-08 23:08:16 +0200 |
commit | b0b63ba276e9c0c10dbc3f995c906746411b1370 (patch) | |
tree | 53438971ec2cb711dba9d732e8083f46b7db1f23 /print/print.php | |
parent | b770974924e82247ac002f04bc0c847b314486e0 (diff) |
Diffstat (limited to 'print/print.php')
-rw-r--r-- | print/print.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print/print.php b/print/print.php index e4cc759..5f8dc96 100644 --- a/print/print.php +++ b/print/print.php @@ -17,7 +17,7 @@ require_once __DIR__ . '/vendor/autoload.php'; * Match cards from input */ -preg_match_all("/(\d+) (.+) \(([\w\d]+)\) (\d+\w*) ?([\*\w]*)/", $decklist, $matches); +preg_match_all("/(\d+) (.+) \(([\w\d]+)\) (\d+[\w\-]*) ?([\*\w]*)/", $decklist, $matches); $cards = []; for ($idx = 0; $idx < count($matches[0]); $idx++) { $cards[] = [ |