Skip to content

Commit faf2356

Browse files
update contributions
1 parent 0cfb0eb commit faf2356

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

Plugin/MainPlugin.cs

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class MainPlugin : LabApi.Loader.Features.Plugins.Plugin
2222
public override string Description => "The scripting language for SCP:SL.";
2323
public override string Author => "Elektryk_Andrzej";
2424
public override Version RequiredApiVersion => LabApiProperties.CurrentVersion;
25-
public override Version Version => new(0, 4, 1);
25+
public override Version Version => new(0, 5, 0);
2626

2727
public static string GitHubLink => "https://github.com/ScriptedEvents/ScriptedEventsReloaded";
2828
public static string HelpCommandName => "serhelp";
@@ -34,23 +34,24 @@ public record struct Contributor(string Name, Contribution Contribution);
3434
public enum Contribution
3535
{
3636
None = 0,
37-
Developer = 1 << 1,
38-
QualityAssurance = 1 << 2,
39-
Sponsor = 1 << 3,
40-
Betatester = 1 << 4,
41-
EarlyAdopter = 1 << 5
37+
LeadDeveloper = 1 << 1,
38+
Developer = 1 << 2,
39+
QualityAssurance = 1 << 3,
40+
Sponsor = 1 << 4,
41+
Betatester = 1 << 5,
42+
EarlyAdopter = 1 << 6
4243
}
43-
44+
4445
public static Contributor[] Contributors =>
4546
[
46-
new(Instance.Author, Contribution.Developer),
47+
new(Instance.Author, Contribution.LeadDeveloper),
4748
new("Whitty985playz", Contribution.QualityAssurance | Contribution.EarlyAdopter),
4849
new("Jraylor", Contribution.Sponsor),
49-
new("Luke", Contribution.Sponsor),
50-
new("Krzysiu Wojownik", Contribution.QualityAssurance),
50+
new("Luke", Contribution.Developer | Contribution.Sponsor),
51+
new("Krzysiu Wojownik", Contribution.QualityAssurance | Contribution.Developer),
5152
new("Raging Tornado", Contribution.Betatester)
52-
];
53-
53+
];
54+
5455
public override void Enable()
5556
{
5657
Instance = this;

0 commit comments

Comments
 (0)