6
0
Fork 0
release
李静 2022-01-19 14:26:25 +08:00
parent 7554b990d9
commit 73262cfd4e
1 changed files with 6 additions and 6 deletions

View File

@ -16,12 +16,12 @@ enum DealerLvl: int {
public function agentLvl()
{
return match ($this) {
static::None => 1,
static::Gold => 3,
static::Special => 4,
static::Contracted => 5,
static::Secondary => 6,
static::Top => 7,
static::None => 0,
static::Gold => 2,
static::Special => 3,
static::Contracted => 4,
static::Secondary => 5,
static::Top => 6,
};
}