fix!: add missing skill rating case to parameter expression

This commit is contained in:
Lukas Obermann
2026-06-14 00:12:28 +02:00
parent 500a2631b9
commit 64ee1cce6a
+1
View File
@@ -120,5 +120,6 @@ const ExpressionBasedParameterExpressionValue = DB.Enum(import.meta.url, {
Constant: DB.EnumCase({ type: DB.Integer({ minimum: 1 }) }),
QualityLevels: DB.EnumCase({ type: null }),
SkillPoints: DB.EnumCase({ type: null }),
SkillRating: DB.EnumCase({ type: null }),
}),
})