Changed minimum of arithmethic to 1

This commit is contained in:
Lector
2026-06-10 22:02:58 +02:00
parent 8afbc750c3
commit 755b559ea4
@@ -31,7 +31,7 @@ export const CheckResultBasedModifier = DB.TypeAlias(import.meta.url, {
}),
value: DB.Required({
comment: "The value that is applied to the `base` using the defined `arithmetic`.",
type: DB.Integer({ minimum: 2 }),
type: DB.Integer({ minimum: 1 }),
}),
}),
})