Skip to content

Commit

Permalink
Return old GetUsagePower
Browse files Browse the repository at this point in the history
  • Loading branch information
Tornado-Technology committed Nov 27, 2024
1 parent bb4544d commit 8cdec38
Showing 1 changed file with 21 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,27 +209,27 @@ private uint GetUsagePower(int level)
return level switch
{
0 => 500,
1 => 500,
2 => 1_000,
3 => 5_000,
4 => 10_000,
5 => 25_000,
6 => 50_000,
7 => 100_000,
8 => 150_000,
9 => 300_000,
10 => 500_000,
11 => 1_000_000,
12 => 1_500_000,
13 => 2_000_000,
14 => 2_500_000,
15 => 3_000_000,
16 => 3_500_000,
17 => 4_000_000,
18 => 4_500_000,
19 => 5_000_000,
20 => 10_000_000,
_ => 15_000_000,
1 => 1_000,
2 => 5_000,
3 => 50_000,
4 => 100_000,
5 => 500_000,
6 => 1_000_000,
7 => 2_000_000,
8 => 3_000_000,
9 => 5_000_000,
10 => 7_000_000,
11 => 9_000_000,
12 => 10_000_000,
13 => 12_000_000,
14 => 14_000_000,
15 => 16_000_000,
16 => 20_000_000,
17 => 40_000_000,
18 => 80_000_000,
19 => 100_000_000,
20 => 200_000_000,
_ => 1_000_000_000,
};
}

Expand Down

0 comments on commit 8cdec38

Please sign in to comment.