Skip to content

Commit 497a9bb

Browse files
update luke's rank
1 parent 0292a8b commit 497a9bb

1 file changed

Lines changed: 13 additions & 12 deletions

File tree

Code/Plugin/MainPlugin.cs

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,15 @@ public record Contributor(string Name, Contribution Contribution, string? Id = n
3737
[Flags]
3838
public enum Contribution : ushort
3939
{
40-
ProjectManager = 1 << 8,
41-
CodeContributor = 1 << 7,
42-
QualityAssurance = 1 << 6,
40+
ProjectManager = 1 << 9,
41+
CodeContributor = 1 << 8,
42+
QualityAssurance = 1 << 7,
43+
SponsorWithTooMuchMoney = 1 << 6,
4344
Sponsor = 1 << 5,
4445
Betatester = 1 << 4,
4546
EarlyAdopter = 1 << 3,
4647
TechSupport = 1 << 2,
47-
LegacyDeveloper = 1 << 1
48+
LegacyDev = 1 << 1
4849
}
4950

5051
public static Contributor[] Contributors =>
@@ -65,29 +66,29 @@ public enum Contribution : ushort
6566
"76561198859902154@steam"
6667
),
6768
new(
68-
"RetroReul",
69-
Contribution.CodeContributor
69+
"Luke",
70+
Contribution.SponsorWithTooMuchMoney | Contribution.Betatester,
71+
"76561197961020347@steam"
7072
),
7173
new(
72-
"Krzysiu Wojownik",
73-
Contribution.QualityAssurance | Contribution.CodeContributor
74+
"RetroReul",
75+
Contribution.CodeContributor
7476
),
7577
new(
7678
"Jraylor",
7779
Contribution.Sponsor
7880
),
7981
new(
80-
"Luke",
81-
Contribution.Sponsor | Contribution.Betatester,
82-
"76561197961020347@steam"
82+
"Krzysiu Wojownik",
83+
Contribution.QualityAssurance | Contribution.CodeContributor
8384
),
8485
new(
8586
"Raging Tornado",
8687
Contribution.Betatester
8788
),
8889
new(
8990
"Thunder",
90-
Contribution.LegacyDeveloper,
91+
Contribution.LegacyDev,
9192
"76561198199188486@steam"
9293
)
9394
];

0 commit comments

Comments
 (0)