Thanks to visit codestin.com
Credit goes to Github.com

Skip to content

Add VC limit for each dungeon on a per-section basis. #214

@ewang2002

Description

@ewang2002

One easy way to implement this is to have an array for each section (including the main section) where each element is of type

interface IDungeonLimit { 
    dungeonId: string; // the dungeon unique identifier
    vcLimit: number; // the VC limit
}

Then, to get the VC limit, we can do the following:

  • check if there is a defined VC limit for that dungeon in the section
  • if not, fallback to the default section VC limit

We can potentially extend this to include the ability to

  • customize number of people that can get Nitro (right now, you can only customize it on a per-dungeon basis, not on a per-dungeon+section basis)
  • customize number of people that can use Points to get in (same idea as above)
  • customize number of Points needed to get in (same idea as above)

Metadata

Metadata

Assignees

No one assigned

    Labels

    c-configCategory: Configuration-related (all configuration commands)it-enhancementIssue Type: Enhancement (new feature or request)

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions