From 0723fe0c6a477eb9f8fe28631495f26a91ba4fc5 Mon Sep 17 00:00:00 2001 From: Branden J Brown Date: Fri, 13 Feb 2026 16:28:37 -0500 Subject: [PATCH] horsegen: fix missing blanket case in spark effects --- horse/global/spark.kk | 1 + horsegen/spark.kk.template | 1 + 2 files changed, 2 insertions(+) diff --git a/horse/global/spark.kk b/horse/global/spark.kk index 9714edd..cc23135 100644 --- a/horse/global/spark.kk +++ b/horse/global/spark.kk @@ -12243,3 +12243,4 @@ pub fun effects(s: spark-id): list> [Skill-Hint(Skill-id(900691), 2),], [Skill-Hint(Skill-id(900691), 3),], ] + _ -> [] diff --git a/horsegen/spark.kk.template b/horsegen/spark.kk.template index 2567de5..c4f6a8e 100644 --- a/horsegen/spark.kk.template +++ b/horsegen/spark.kk.template @@ -128,4 +128,5 @@ pub fun effects(s: spark-id): list> {{- end }} ] {{- end }} + _ -> [] {{ end }}