We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3a49cc commit f2777c7Copy full SHA for f2777c7
Code/Plugin/MainPlugin.cs
@@ -35,16 +35,15 @@ public class MainPlugin : LabApi.Loader.Features.Plugins.Plugin<Config>
35
public record Contributor(string Name, Contribution Contribution, string? Id = null);
36
37
[Flags]
38
- public enum Contribution
+ public enum Contribution : byte
39
{
40
- None = 0,
41
- LeadDeveloper = 1 << 1,
42
- Developer = 1 << 2,
43
- QualityAssurance = 1 << 3,
+ LeadDeveloper = 1 << 7,
+ Developer = 1 << 6,
+ QualityAssurance = 1 << 5,
44
Sponsor = 1 << 4,
45
- Betatester = 1 << 5,
46
- EarlyAdopter = 1 << 6,
47
- TechSupport = 1 << 7,
+ Betatester = 1 << 3,
+ EarlyAdopter = 1 << 2,
+ TechSupport = 1 << 1
48
}
49
50
public static Contributor[] Contributors =>
0 commit comments