random raids now can have more players

This commit is contained in:
Sarah Faey 2022-12-08 19:30:31 +01:00
parent 929ca9c0a7
commit 07eede3f9a
5 changed files with 46 additions and 6 deletions

View file

@ -542,11 +542,11 @@ namespace Lieb.Data
}
}
public RaidRole CreateRandomSignUpRole(RaidType raidType)
public RaidRole CreateRandomSignUpRole(RaidType raidType, int spots = 10)
{
return new RaidRole()
{
Spots = 10,
Spots = spots,
Name = "Random",
Description = raidType.ToString(),
IsRandomSignUpRole = true