@@ -37,8 +37,8 @@ public record Contributor(string Name, Contribution Contribution, string? Id = n
3737 [ Flags ]
3838 public enum Contribution : ushort
3939 {
40- ProjectLead = 1 << 8 ,
41- Developer = 1 << 7 ,
40+ ProjectManager = 1 << 8 ,
41+ CodeContributor = 1 << 7 ,
4242 QualityAssurance = 1 << 6 ,
4343 Sponsor = 1 << 5 ,
4444 Betatester = 1 << 4 ,
@@ -51,22 +51,26 @@ public enum Contribution : ushort
5151 [
5252 new (
5353 Instance . Author ,
54- Contribution . ProjectLead ,
54+ Contribution . ProjectManager ,
5555 "76561198361176072@steam"
5656 ) ,
5757 new (
5858 "Tosoks67" ,
59- Contribution . Developer | Contribution . Betatester ,
59+ Contribution . CodeContributor | Contribution . Betatester ,
6060 "76561199175834203@steam"
6161 ) ,
6262 new (
6363 "Whitty985playz" ,
6464 Contribution . QualityAssurance | Contribution . EarlyAdopter ,
6565 "76561198859902154@steam"
6666 ) ,
67+ new (
68+ "RetroReul" ,
69+ Contribution . CodeContributor
70+ ) ,
6771 new (
6872 "Krzysiu Wojownik" ,
69- Contribution . QualityAssurance | Contribution . Developer
73+ Contribution . QualityAssurance | Contribution . CodeContributor
7074 ) ,
7175 new (
7276 "Jraylor" ,
@@ -81,10 +85,6 @@ public enum Contribution : ushort
8185 "Raging Tornado" ,
8286 Contribution . Betatester
8387 ) ,
84- new (
85- "Saskyc" ,
86- Contribution . TechSupport
87- ) ,
8888 new (
8989 "Thunder" ,
9090 Contribution . LegacyDeveloper ,
0 commit comments