From 6e80d4543d54fcf575459045b5b2d4d0aed0a698 Mon Sep 17 00:00:00 2001 From: Pandraghon Date: Mon, 5 Apr 2021 22:20:30 +0200 Subject: [PATCH 1/4] Added compatibility with Among Us 2021.3.31.3s --- ReactorSheriff/GameOptionsMenuPatch.cs | 4 ++-- ReactorSheriff/HudManagerPatch.cs | 6 +++--- ReactorSheriff/IntroCutScenePatch.cs | 6 +++--- ReactorSheriff/KillButtonPatch.cs | 2 +- ReactorSheriff/PlayerControlPatch.cs | 14 +++++++------- ReactorSheriff/ReactorSheriff.csproj | 8 ++++---- ReactorSheriff/VersionShowerPatch.cs | 2 +- 7 files changed, 21 insertions(+), 21 deletions(-) diff --git a/ReactorSheriff/GameOptionsMenuPatch.cs b/ReactorSheriff/GameOptionsMenuPatch.cs index d255f7b..ee5d165 100644 --- a/ReactorSheriff/GameOptionsMenuPatch.cs +++ b/ReactorSheriff/GameOptionsMenuPatch.cs @@ -111,7 +111,7 @@ public static bool Prefix1(NumberOption __instance) { CustomGameOptions.SheriffKillCD = Math.Min(CustomGameOptions.SheriffKillCD + 2.5f, 45); PlayerControl.LocalPlayer.RpcSyncSettings(PlayerControl.GameOptions); - __instance.Field_3 = CustomGameOptions.SheriffKillCD; + __instance.oldValue = CustomGameOptions.SheriffKillCD; __instance.Value = CustomGameOptions.SheriffKillCD; __instance.ValueText.Text = CustomGameOptions.SheriffKillCD.ToString(); return false; @@ -129,7 +129,7 @@ public static bool Prefix2(NumberOption __instance) CustomGameOptions.SheriffKillCD = Math.Max(CustomGameOptions.SheriffKillCD - 2.5f, 10); PlayerControl.LocalPlayer.RpcSyncSettings(PlayerControl.GameOptions); - __instance.Field_3 = CustomGameOptions.SheriffKillCD; + __instance.oldValue = CustomGameOptions.SheriffKillCD; __instance.Value = CustomGameOptions.SheriffKillCD; __instance.ValueText.Text = CustomGameOptions.SheriffKillCD.ToString(); diff --git a/ReactorSheriff/HudManagerPatch.cs b/ReactorSheriff/HudManagerPatch.cs index 462d59b..bc1d800 100644 --- a/ReactorSheriff/HudManagerPatch.cs +++ b/ReactorSheriff/HudManagerPatch.cs @@ -87,7 +87,7 @@ public static void Postfix(HudManager __instance) PlayerControl.LocalPlayer.nameText.Color = new Color(1, (float)(204.0 / 255.0), 0, 1); - if (PlayerControl.LocalPlayer.Data.AKOHOAJIHBE || PlayerControlPatch.sheriffInTask || isMeetingHudActive) // isDead + if (PlayerControl.LocalPlayer.Data.IsDead || PlayerControlPatch.sheriffInTask || isMeetingHudActive) { KillButton.gameObject.SetActive(false); KillButton.isActive = false; @@ -110,9 +110,9 @@ public static void Postfix(HudManager __instance) } } } - else if (PlayerControl.LocalPlayer.Data.LGEGJEHCFOG) // isImpostor + else if (PlayerControl.LocalPlayer.Data.IsImpostor) { - if (PlayerControl.LocalPlayer.Data.AKOHOAJIHBE) // isDead + if (PlayerControl.LocalPlayer.Data.IsDead) { KillButton.gameObject.SetActive(false); KillButton.isActive = false; diff --git a/ReactorSheriff/IntroCutScenePatch.cs b/ReactorSheriff/IntroCutScenePatch.cs index 2221cc7..636a5d7 100644 --- a/ReactorSheriff/IntroCutScenePatch.cs +++ b/ReactorSheriff/IntroCutScenePatch.cs @@ -3,11 +3,11 @@ namespace ReactorSheriff { - [HarmonyPatch(typeof(IntroCutscene.Nested_0))] + [HarmonyPatch(typeof(IntroCutscene._CoBegin_d__11))] public static class IntroCutScenePatch { - [HarmonyPatch(nameof(IntroCutscene.Nested_0.MoveNext))] - public static void Postfix(IntroCutscene.Nested_0 __instance) + [HarmonyPatch(nameof(IntroCutscene._CoBegin_d__11.MoveNext))] + public static void Postfix(IntroCutscene._CoBegin_d__11 __instance) { if (PlayerControlPatch.isSheriff(PlayerControl.LocalPlayer)) { diff --git a/ReactorSheriff/KillButtonPatch.cs b/ReactorSheriff/KillButtonPatch.cs index bf65baa..d107d57 100644 --- a/ReactorSheriff/KillButtonPatch.cs +++ b/ReactorSheriff/KillButtonPatch.cs @@ -20,7 +20,7 @@ static bool Prefix(MethodBase __originalMethod) if (dist < GameOptionsData.KillDistances[PlayerControl.GameOptions.KillDistance]) { - if (PlayerControlPatch.closestPlayer.Data.LGEGJEHCFOG == false) // isImpostor + if (PlayerControlPatch.closestPlayer.Data.IsImpostor == false) { MessageWriter writer = AmongUsClient.Instance.StartRpcImmediately(PlayerControl.LocalPlayer.NetId, (byte)CustomRPC.SheriffKill, Hazel.SendOption.None, -1); writer.Write(PlayerControl.LocalPlayer.PlayerId); diff --git a/ReactorSheriff/PlayerControlPatch.cs b/ReactorSheriff/PlayerControlPatch.cs index ea32e7a..e4d4c7f 100644 --- a/ReactorSheriff/PlayerControlPatch.cs +++ b/ReactorSheriff/PlayerControlPatch.cs @@ -164,7 +164,7 @@ public static float SheriffKillTimer() return (KillCoolDown - (float)diff.TotalMilliseconds) / 1000.0f; } - public static List getCrewMates(Il2CppReferenceArray infection) + public static List getCrewMates(Il2CppReferenceArray infection) { List CrewmateIds = new List(); @@ -172,10 +172,10 @@ public static List getCrewMates(Il2CppReferenceArray PlayerInfos) + public static void Postfix([HarmonyArgument(0)] Il2CppReferenceArray PlayerInfos) { MessageWriter writer = AmongUsClient.Instance.StartRpcImmediately(PlayerControl.LocalPlayer.NetId, (byte)CustomRPC.SetSheriff, Hazel.SendOption.None, -1); List crewmates = getCrewMates(PlayerInfos); @@ -254,7 +254,7 @@ public static bool Prefix(PlayerControl __instance) { if (__instance.PlayerId == Sheriff.PlayerId) { - __instance.Data.LGEGJEHCFOG = true; // isImpostor + __instance.Data.IsImpostor = true; } } @@ -268,7 +268,7 @@ public static void Postfix(PlayerControl __instance) { if (__instance.PlayerId == Sheriff.PlayerId) { - __instance.Data.LGEGJEHCFOG = false; // isImpostor + __instance.Data.IsImpostor = false; } } } diff --git a/ReactorSheriff/ReactorSheriff.csproj b/ReactorSheriff/ReactorSheriff.csproj index 4cc829e..80e711c 100644 --- a/ReactorSheriff/ReactorSheriff.csproj +++ b/ReactorSheriff/ReactorSheriff.csproj @@ -1,9 +1,9 @@ netstandard2.1 - 1.2.2 - 2021.3.5s - NuclearPowered/Mappings:0.2.0 + 1.2.3 + 2021.3.31.3s + NuclearPowered/Mappings:0.3.0 Reimplementation of Woodi's Sheriff Mod in Reactor Brybry @@ -12,7 +12,7 @@ - + diff --git a/ReactorSheriff/VersionShowerPatch.cs b/ReactorSheriff/VersionShowerPatch.cs index 3bc8b81..4606f3f 100644 --- a/ReactorSheriff/VersionShowerPatch.cs +++ b/ReactorSheriff/VersionShowerPatch.cs @@ -8,7 +8,7 @@ public static class VersionShowerPatch // Methods public static void Postfix(VersionShower __instance) { - __instance.text.Text += "\nLoaded [F7C600FF]Sheriff Mod v1.2.2-R[] by Brybry"; + __instance.text.Text += "\nLoaded [F7C600FF]Sheriff Mod v1.2.3-R[] by Brybry"; } } From aa60d0a06814bc43ff63fb81ec0a3bda0ad99b54 Mon Sep 17 00:00:00 2001 From: Brybry Date: Tue, 6 Apr 2021 15:11:00 +0200 Subject: [PATCH 2/4] Updated to v1.2.3-R --- README.md | 9 ++++++++- ReactorSheriff/SheriffReactorMod.cs | 8 ++++++++ ReactorSheriff/VersionShowerPatch.cs | 15 --------------- 3 files changed, 16 insertions(+), 16 deletions(-) delete mode 100644 ReactorSheriff/VersionShowerPatch.cs diff --git a/README.md b/README.md index 65eaf36..149d544 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Every player in your lobby need to install Reactor-Sheriff Mod. There are two wa 2. Install Reactor by following **[these instructions](https://docs.reactor.gg/docs/basic/install_reactor)**. 3. Download the **dll file** for your game version in the **[Releases section](#releases)** below. 4. Copy the dll file into **`Among Us/BepInEx/plugins`**. -5. (Optional) If you want to play on official servers, you must do the following : +5. (Optional) If you want to play on official servers, you must do the following (**doesn't work anymore since v2021.3.31s**) : - Open **`Among us/BepInEx/config/gg.reactor.api.cfg`** with a text editor. - Find the line `Modded handshake = true` and change it to `Modded handshake = false`. - Save and close your editor. @@ -36,6 +36,7 @@ Every player in your lobby need to install Reactor-Sheriff Mod. There are two wa | Among Us Version | Mod Version | All-in-one pack | DLL file | | :--------------: | :---------: | :-------------: | :------: | + | v2021.3.31.3s | Ver. 1.2.3-R |[**Download**](https://github.com/Brybry16/Reactor-Sheriff/releases/download/v1.2.3/ReactorSheriff-v1.2.3.zip) | [**Download**](https://github.com/Brybry16/Reactor-Sheriff/releases/download/v1.2.3/ReactorSheriff-2021.3.31.3s.dll) | | v2021.3.5s | Ver. 1.2.2-R |[**Download**](https://github.com/Brybry16/Reactor-Sheriff/releases/download/v1.2.2/ReactorSheriff-v1.2.2.zip) | [**Download**](https://github.com/Brybry16/Reactor-Sheriff/releases/download/v1.2.2/ReactorSheriff-2021.3.5s.dll) | | v2021.3.5s | Ver. 1.2.1-R |[**Download**](https://github.com/Brybry16/Reactor-Sheriff/releases/download/v1.2.1/ReactorSheriff-v1.2.1.zip) | [**Download**](https://github.com/Brybry16/Reactor-Sheriff/releases/download/v1.2.1/ReactorSheriff-2021.3.5s.dll) | | v2020.12.9s | Ver. 1.2-R |[**Download**](https://github.com/Brybry16/Reactor-Sheriff/releases/download/v1.2/ReactorSheriff-v1.2.zip) | [**Download**](https://github.com/Brybry16/Reactor-Sheriff/releases/download/v1.2/ReactorSheriff-2020.12.9s.dll) | @@ -43,6 +44,12 @@ Every player in your lobby need to install Reactor-Sheriff Mod. There are two wa
Changelog +

v1.2.3-R

+
    +
  • Updated the mod for Among Us v2021.3.31.3
  • +
  • Fixed Version Shower
  • +
+

v1.2.2-R

  • Fixed KillButton being enabled when the Sheriff is dead
  • diff --git a/ReactorSheriff/SheriffReactorMod.cs b/ReactorSheriff/SheriffReactorMod.cs index 41287f7..2e33f55 100644 --- a/ReactorSheriff/SheriffReactorMod.cs +++ b/ReactorSheriff/SheriffReactorMod.cs @@ -2,6 +2,7 @@ using BepInEx.IL2CPP; using HarmonyLib; using Reactor; +using Reactor.Patches; namespace ReactorSheriff { @@ -25,6 +26,13 @@ public override void Load() { log.LogMessage("Sheriff Mod loaded"); + ReactorVersionShower.TextUpdated += (text) => + { + int index = text.Text.LastIndexOf('\n'); + text.Text = text.Text.Insert(index == -1 ? text.Text.Length - 1 : index, + "\nLoaded [F7C600FF]Sheriff Mod v1.2.3-R[] by Brybry"); + }; + Harmony.PatchAll(); } } diff --git a/ReactorSheriff/VersionShowerPatch.cs b/ReactorSheriff/VersionShowerPatch.cs deleted file mode 100644 index 4606f3f..0000000 --- a/ReactorSheriff/VersionShowerPatch.cs +++ /dev/null @@ -1,15 +0,0 @@ -using HarmonyLib; - -namespace ReactorSheriff -{ - [HarmonyPatch(typeof(VersionShower), nameof(VersionShower.Start))] - public static class VersionShowerPatch - { - // Methods - public static void Postfix(VersionShower __instance) - { - __instance.text.Text += "\nLoaded [F7C600FF]Sheriff Mod v1.2.3-R[] by Brybry"; - } - } - -} From 314e11cc6371d506cb5e3eebf004fcb20c394010 Mon Sep 17 00:00:00 2001 From: Pandraghon Date: Tue, 27 Apr 2021 22:02:33 +0200 Subject: [PATCH 3/4] Added compatibility with Among Us 2021.4.12s & 2021.4.14s --- ReactorSheriff/GameOptionsMenuPatch.cs | 16 ++++++++-------- ReactorSheriff/HudManagerPatch.cs | 16 ++++++++-------- ReactorSheriff/IntroCutScenePatch.cs | 12 ++++++------ ReactorSheriff/Player.cs | 2 +- ReactorSheriff/PlayerControlPatch.cs | 4 ++-- ReactorSheriff/ReactorSheriff.csproj | 6 +++--- ReactorSheriff/SheriffReactorMod.cs | 6 +++--- 7 files changed, 31 insertions(+), 31 deletions(-) diff --git a/ReactorSheriff/GameOptionsMenuPatch.cs b/ReactorSheriff/GameOptionsMenuPatch.cs index ee5d165..9fb9c6a 100644 --- a/ReactorSheriff/GameOptionsMenuPatch.cs +++ b/ReactorSheriff/GameOptionsMenuPatch.cs @@ -31,7 +31,7 @@ public static ToggleOption PrepareToggle(GameOptionsMenu instance, string title, ToggleOption toggle = UnityEngine.Object.Instantiate(instance.GetComponentsInChildren().Last(), instance.transform); PositionElement(toggle); - toggle.TitleText.Text = title; + toggle.TitleText.text = title; toggle.CheckMark.enabled = enabled; return toggle; @@ -44,9 +44,9 @@ public static NumberOption PrepareNumberOption(GameOptionsMenu instance, string PositionElement(option); option.gameObject.name = title; - option.TitleText.Text = title; + option.TitleText.text = title; option.Value = value; - option.ValueText.Text = value.ToString(); + option.ValueText.text = value.ToString(); return option; } @@ -84,7 +84,7 @@ public static class ToggleButtonPatch [HarmonyPatch(nameof(ToggleOption.Toggle))] public static bool Prefix(ToggleOption __instance) { - if (__instance.TitleText.Text == GameOptionsMenuPatch.ShowSheriffOption.TitleText.Text) + if (__instance.TitleText.text == GameOptionsMenuPatch.ShowSheriffOption.TitleText.text) { CustomGameOptions.ShowSheriff = !CustomGameOptions.ShowSheriff; PlayerControl.LocalPlayer.RpcSyncSettings(PlayerControl.GameOptions); @@ -107,13 +107,13 @@ public static class NumberOptionPatch [HarmonyPatch(nameof(NumberOption.Increase))] public static bool Prefix1(NumberOption __instance) { - if (__instance.TitleText.Text == GameOptionsMenuPatch.SheriffCooldown.TitleText.Text) + if (__instance.TitleText.text == GameOptionsMenuPatch.SheriffCooldown.TitleText.text) { CustomGameOptions.SheriffKillCD = Math.Min(CustomGameOptions.SheriffKillCD + 2.5f, 45); PlayerControl.LocalPlayer.RpcSyncSettings(PlayerControl.GameOptions); __instance.oldValue = CustomGameOptions.SheriffKillCD; __instance.Value = CustomGameOptions.SheriffKillCD; - __instance.ValueText.Text = CustomGameOptions.SheriffKillCD.ToString(); + __instance.ValueText.text = CustomGameOptions.SheriffKillCD.ToString(); return false; } @@ -124,14 +124,14 @@ public static bool Prefix1(NumberOption __instance) [HarmonyPatch(nameof(NumberOption.Decrease))] public static bool Prefix2(NumberOption __instance) { - if (__instance.TitleText.Text == GameOptionsMenuPatch.SheriffCooldown.TitleText.Text) + if (__instance.TitleText.text == GameOptionsMenuPatch.SheriffCooldown.TitleText.text) { CustomGameOptions.SheriffKillCD = Math.Max(CustomGameOptions.SheriffKillCD - 2.5f, 10); PlayerControl.LocalPlayer.RpcSyncSettings(PlayerControl.GameOptions); __instance.oldValue = CustomGameOptions.SheriffKillCD; __instance.Value = CustomGameOptions.SheriffKillCD; - __instance.ValueText.Text = CustomGameOptions.SheriffKillCD.ToString(); + __instance.ValueText.text = CustomGameOptions.SheriffKillCD.ToString(); return false; } diff --git a/ReactorSheriff/HudManagerPatch.cs b/ReactorSheriff/HudManagerPatch.cs index bc1d800..30c8f9c 100644 --- a/ReactorSheriff/HudManagerPatch.cs +++ b/ReactorSheriff/HudManagerPatch.cs @@ -24,19 +24,19 @@ public static class HudManagerPatch public static void UpdateGameSettingsText(HudManager __instance) { - if (__instance.GameSettings.Text.Split(new char[] { '\n' }, StringSplitOptions.RemoveEmptyEntries).Count() == 19) + if (__instance.GameSettings.text.Split(new char[] { '\n' }, StringSplitOptions.RemoveEmptyEntries).Count() == 19) { - GameSettingsText = __instance.GameSettings.Text; + GameSettingsText = __instance.GameSettings.text; } if (GameSettingsText != null) { if (CustomGameOptions.ShowSheriff) - __instance.GameSettings.Text = GameSettingsText + "Show Sheriff: On" + "\n"; + __instance.GameSettings.text = GameSettingsText + "Show Sheriff: On" + "\n"; else - __instance.GameSettings.Text = GameSettingsText + "Show Sheriff: Off" + "\n"; + __instance.GameSettings.text = GameSettingsText + "Show Sheriff: Off" + "\n"; - __instance.GameSettings.Text += "Sheriff Kill Cooldown: " + CustomGameOptions.SheriffKillCD.ToString() + "s"; + __instance.GameSettings.text += "Sheriff Kill Cooldown: " + CustomGameOptions.SheriffKillCD.ToString() + "s"; } } @@ -56,11 +56,11 @@ public static void updateMeetingHud(MeetingHud __instance) { foreach (PlayerVoteArea playerVoteArea in __instance.playerStates) { - if (PlayerControlPatch.Sheriff != null && playerVoteArea.NameText.Text == PlayerControlPatch.Sheriff.name) + if (PlayerControlPatch.Sheriff != null && playerVoteArea.NameText.text == PlayerControlPatch.Sheriff.name) { if (CustomGameOptions.ShowSheriff | PlayerControlPatch.isSheriff(PlayerControl.LocalPlayer)) { - playerVoteArea.NameText.Color = new Color(1, (float)(204.0 / 255.0), 0, 1); + playerVoteArea.NameText.color = new Color(1, (float)(204.0 / 255.0), 0, 1); } } } @@ -84,7 +84,7 @@ public static void Postfix(HudManager __instance) if (PlayerControlPatch.isSheriff(PlayerControl.LocalPlayer)) { - PlayerControl.LocalPlayer.nameText.Color = new Color(1, (float)(204.0 / 255.0), 0, 1); + PlayerControl.LocalPlayer.nameText.color = new Color(1, (float)(204.0 / 255.0), 0, 1); if (PlayerControl.LocalPlayer.Data.IsDead || PlayerControlPatch.sheriffInTask || isMeetingHudActive) diff --git a/ReactorSheriff/IntroCutScenePatch.cs b/ReactorSheriff/IntroCutScenePatch.cs index 636a5d7..9295d95 100644 --- a/ReactorSheriff/IntroCutScenePatch.cs +++ b/ReactorSheriff/IntroCutScenePatch.cs @@ -3,17 +3,17 @@ namespace ReactorSheriff { - [HarmonyPatch(typeof(IntroCutscene._CoBegin_d__11))] + [HarmonyPatch(typeof(IntroCutscene.Nested_0))] public static class IntroCutScenePatch { - [HarmonyPatch(nameof(IntroCutscene._CoBegin_d__11.MoveNext))] - public static void Postfix(IntroCutscene._CoBegin_d__11 __instance) + [HarmonyPatch(nameof(IntroCutscene.Nested_0.MoveNext))] + public static void Postfix(IntroCutscene.Nested_0 __instance) { if (PlayerControlPatch.isSheriff(PlayerControl.LocalPlayer)) { - __instance.__this.Title.Text = "Sheriff"; - __instance.__this.Title.Color = new Color(1, (float)(204.0 / 255.0), 0, 1); - __instance.__this.ImpostorText.Text = "Shoot the [FF0000FF]Impostor"; + __instance.__this.Title.text = "Sheriff"; + __instance.__this.Title.color = new Color(1, (float)(204.0 / 255.0), 0, 1); + __instance.__this.ImpostorText.text = "Shoot the Impostor"; __instance.__this.BackgroundBar.material.color = new Color(1, (float)(204.0 / 255.0), 0, 1); } diff --git a/ReactorSheriff/Player.cs b/ReactorSheriff/Player.cs index 09a8016..04a7bc0 100644 --- a/ReactorSheriff/Player.cs +++ b/ReactorSheriff/Player.cs @@ -17,7 +17,7 @@ public void Update() { if (isSheriff & (CustomGameOptions.ShowSheriff | this == PlayerController.getLocalPlayer())) { - playerdata.nameText.Color = new Color(48 / 255.0f, 223 / 255.0f, 48 / 255.0f); + playerdata.nameText.color = new Color(48 / 255.0f, 223 / 255.0f, 48 / 255.0f); } } } diff --git a/ReactorSheriff/PlayerControlPatch.cs b/ReactorSheriff/PlayerControlPatch.cs index e4d4c7f..9aebfb8 100644 --- a/ReactorSheriff/PlayerControlPatch.cs +++ b/ReactorSheriff/PlayerControlPatch.cs @@ -80,7 +80,7 @@ public static void Postfix([HarmonyArgument(0)] byte callId, [HarmonyArgument(1) Sheriff = player; if (CustomGameOptions.ShowSheriff) { - player.nameText.Color = new Color(1, (float)(204.0 / 255.0), 0, 1); + player.nameText.color = new Color(1, (float)(204.0 / 255.0), 0, 1); } } } @@ -237,7 +237,7 @@ public static void Postfix([HarmonyArgument(0)] Il2CppReferenceArray netstandard2.1 - 1.2.3 - 2021.3.31.3s - NuclearPowered/Mappings:0.3.0 + 1.2.4 + 2021.4.12s + NuclearPowered/Mappings:0.4.0 Reimplementation of Woodi's Sheriff Mod in Reactor Brybry diff --git a/ReactorSheriff/SheriffReactorMod.cs b/ReactorSheriff/SheriffReactorMod.cs index 2e33f55..1c8bc54 100644 --- a/ReactorSheriff/SheriffReactorMod.cs +++ b/ReactorSheriff/SheriffReactorMod.cs @@ -28,9 +28,9 @@ public override void Load() ReactorVersionShower.TextUpdated += (text) => { - int index = text.Text.LastIndexOf('\n'); - text.Text = text.Text.Insert(index == -1 ? text.Text.Length - 1 : index, - "\nLoaded [F7C600FF]Sheriff Mod v1.2.3-R[] by Brybry"); + int index = text.text.LastIndexOf('\n'); + text.text = text.text.Insert(index == -1 ? text.text.Length - 1 : index, + "\nLoaded Sheriff Mod v1.2.4-R by Brybry"); }; Harmony.PatchAll(); From 7aa90bd9d936681ac1ee0bbc8de604a2142e4e06 Mon Sep 17 00:00:00 2001 From: Pandraghon Date: Tue, 27 Apr 2021 22:06:36 +0200 Subject: [PATCH 4/4] Update Changelog for 2021.4.12s --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 149d544..72341f4 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,11 @@ Every player in your lobby need to install Reactor-Sheriff Mod. There are two wa
    Changelog +

    v1.2.4-R

    +
      +
    • Updated the mod for Among Us v2021.4.12 (compatible with v2021.4.14)
    • +
    +

    v1.2.3-R

    • Updated the mod for Among Us v2021.3.31.3