Skip to content

Commit 6cb72dd

Browse files
add thunder to contributors
1 parent 5833383 commit 6cb72dd

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

Code/Plugin/MainPlugin.cs

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,16 @@ public class MainPlugin : LabApi.Loader.Features.Plugins.Plugin<Config>
3535
public record Contributor(string Name, Contribution Contribution, string? Id = null);
3636

3737
[Flags]
38-
public enum Contribution : byte
38+
public enum Contribution : ushort
3939
{
40-
LeadDeveloper = 1 << 7,
41-
Developer = 1 << 6,
42-
QualityAssurance = 1 << 5,
43-
Sponsor = 1 << 4,
44-
Betatester = 1 << 3,
45-
EarlyAdopter = 1 << 2,
46-
TechSupport = 1 << 1
40+
LeadDeveloper = 1 << 8,
41+
Developer = 1 << 7,
42+
QualityAssurance = 1 << 6,
43+
Sponsor = 1 << 5,
44+
Betatester = 1 << 4,
45+
EarlyAdopter = 1 << 3,
46+
TechSupport = 1 << 2,
47+
LegacyDeveloper = 1 << 1
4748
}
4849

4950
public static Contributor[] Contributors =>
@@ -55,7 +56,8 @@ public enum Contribution : byte
5556
new("Jraylor", Contribution.Sponsor),
5657
new("Luke", Contribution.Sponsor | Contribution.Betatester),
5758
new("Raging Tornado", Contribution.Betatester),
58-
new("Saskyc", Contribution.TechSupport)
59+
new("Saskyc", Contribution.TechSupport),
60+
new("Thunder", Contribution.LegacyDeveloper, "76561198199188486@steam")
5961
];
6062

6163
public override void Enable()

0 commit comments

Comments
 (0)