Skip to content

Commit f2777c7

Browse files
fix contribution importance order
1 parent e3a49cc commit f2777c7

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

Code/Plugin/MainPlugin.cs

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,15 @@ 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
38+
public enum Contribution : byte
3939
{
40-
None = 0,
41-
LeadDeveloper = 1 << 1,
42-
Developer = 1 << 2,
43-
QualityAssurance = 1 << 3,
40+
LeadDeveloper = 1 << 7,
41+
Developer = 1 << 6,
42+
QualityAssurance = 1 << 5,
4443
Sponsor = 1 << 4,
45-
Betatester = 1 << 5,
46-
EarlyAdopter = 1 << 6,
47-
TechSupport = 1 << 7,
44+
Betatester = 1 << 3,
45+
EarlyAdopter = 1 << 2,
46+
TechSupport = 1 << 1
4847
}
4948

5049
public static Contributor[] Contributors =>

0 commit comments

Comments
 (0)