diff --git a/src/simulation/misc/TheatreOfBlood.ts b/src/simulation/misc/TheatreOfBlood.ts index 439b74ac3..2a213df3a 100644 --- a/src/simulation/misc/TheatreOfBlood.ts +++ b/src/simulation/misc/TheatreOfBlood.ts @@ -163,8 +163,8 @@ export class TheatreOfBloodClass { public complete(_options: TheatreOfBloodOptions) { const options = JSONClone(_options); - if (options.team.length < 2 || options.team.length > 4) { - throw new Error('Only team sizes of 2-4 are supported in ToB'); + if (options.team.length < 1 || options.team.length > 4) { + throw new Error('Only team sizes of 1-4 are supported in ToB'); } const maxPointsPerPerson = 22;