Skip to content

Commit

Permalink
Updated Alphabetization of roles in addons
Browse files Browse the repository at this point in the history
  • Loading branch information
0xDrMoe committed Jan 6, 2024
1 parent 9ceb8fa commit 27c078c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Modules/OptionHolder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2462,7 +2462,9 @@ public static void Load()
.SetParent(CustomRoleSpawnChances[CustomRoles.Seer]);
NeutralCanBeSeer = BooleanOptionItem.Create(20005, "NeutralCanBeSeer", true, TabGroup.Addons, false)
.SetParent(CustomRoleSpawnChances[CustomRoles.Seer]);


Silent.SetupCustomOptions();

SetupAdtRoleOptions(20100, CustomRoles.Sleuth, canSetNum: true);
ImpCanBeSleuth = BooleanOptionItem.Create(20103, "ImpCanBeSleuth", true, TabGroup.Addons, false)
.SetParent(CustomRoleSpawnChances[CustomRoles.Sleuth]);
Expand Down Expand Up @@ -2496,8 +2498,6 @@ public static void Load()
NeutralCanBeWatcher = BooleanOptionItem.Create(20405, "NeutralCanBeWatcher", true, TabGroup.Addons, false)
.SetParent(CustomRoleSpawnChances[CustomRoles.Watcher]);

Silent.SetupCustomOptions();

TextOptionItem.Create(10000016, "RoleType.Harmful", TabGroup.Addons) // HARMFUL
.SetGameMode(CustomGameMode.Standard)
.SetColor(new Color32(255, 154, 206, byte.MaxValue));
Expand Down Expand Up @@ -2527,6 +2527,10 @@ public static void Load()
FragileKillerLunge = BooleanOptionItem.Create(20609, "FragileKillerLunge", true, TabGroup.Addons, false)
.SetParent(CustomRoleSpawnChances[CustomRoles.Fragile]);

Hurried.SetupCustomOption();

Influenced.SetupCustomOption();

Mundane.SetupCustomOption();

SetupAdtRoleOptions(20700, CustomRoles.Oblivious, canSetNum: true);
Expand Down Expand Up @@ -2585,10 +2589,6 @@ public static void Load()
NeutralCanBeVoidBallot = BooleanOptionItem.Create(21105, "NeutralCanBeVoidBallot", true, TabGroup.Addons, false)
.SetParent(CustomRoleSpawnChances[CustomRoles.VoidBallot]);

Influenced.SetupCustomOption();

Hurried.SetupCustomOption();

TextOptionItem.Create(10000017, "RoleType.Mixed", TabGroup.Addons) // MIXED
.SetGameMode(CustomGameMode.Standard)
.SetColor(new Color32(255, 154, 206, byte.MaxValue));
Expand Down

0 comments on commit 27c078c

Please sign in to comment.