diff --git a/README.md b/README.md index fb577abc2..f437450e1 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ The [Role Assignment](#role-assignment) sections explains how the roles are bein # Releases | Among Us - Version| Mod Version | Link | |----------|-------------|-----------------| +| 2021.11.9.5s| v3.2.1| [Download](https://github.com/Eisbison/TheOtherRoles/releases/download/v3.2.1/TheOtherRoles.zip) | 2021.11.9.5s| v3.2.0| [Download](https://github.com/Eisbison/TheOtherRoles/releases/download/v3.2.0/TheOtherRoles.zip) | 2021.11.9.5s| v3.1.2| [Download](https://github.com/Eisbison/TheOtherRoles/releases/download/v3.1.2/TheOtherRoles.zip) | 2021.11.9.5s| v3.1.1| [Download](https://github.com/Eisbison/TheOtherRoles/releases/download/v3.1.1/TheOtherRoles.zip) @@ -84,6 +85,9 @@ The [Role Assignment](#role-assignment) sections explains how the roles are bein
Click to show the Changelog +**Version 3.2.1** +- Hotfix for 3.2.0 + **Version 3.2.0** - **New Role:** [Witch](#witch) created by [Alex2911](https://github.com/Alex2911) - **New Role:** [Lawyer](#lawyer) @@ -132,7 +136,7 @@ The [Role Assignment](#role-assignment) sections explains how the roles are bein - Added Vulture Option: "Show Arrows Pointing Towards The Corpes" - Removed Medium Question: "What is your name?" (name of the soul is added after each question) - + **Version 2.9.0** - **New Role:** [Medium](#medium) - **New Role:** [Vulture](#vulture) @@ -760,7 +764,7 @@ There are multiple options listed down below with which you can configure to fit |----------|:-------------:| | Witch Spawn Chance | - | Witch Spell Casting Cooldown | - -| Witch Additional Cooldown | The spell casting cooldown will be increased by the amount you set here after each spell +| Witch Additional Cooldown | The spell casting cooldown will be increased by the amount you set here after each spell | Witch Can Spell Everyone | If set to false, the witch can't spell the Spy and other Impostors | Witch Spell Casting Duration | The time that you need to stay next to the target in order to cast a spell on it | Trigger Both Cooldowns | If set to true, casting a spell will also trigger cooldown of the kill button and vice versa (but the two cooldowns may vary) diff --git a/TheOtherRoles/CustomOptionHolder.cs b/TheOtherRoles/CustomOptionHolder.cs index a4c66436b..4f94cefb3 100644 --- a/TheOtherRoles/CustomOptionHolder.cs +++ b/TheOtherRoles/CustomOptionHolder.cs @@ -273,12 +273,12 @@ public static void Load() { bountyHunterShowArrow = CustomOption.Create(324, "Show Arrow Pointing Towards The Bounty", true, bountyHunterSpawnRate); bountyHunterArrowUpdateIntervall = CustomOption.Create(325, "Arrow Update Intervall", 15f, 2.5f, 60f, 2.5f, bountyHunterShowArrow); - witchSpawnRate = CustomOption.Create(350, cs(Witch.color, "Witch"), rates, null, true); - witchCooldown = CustomOption.Create(351, "Witch Spell Casting Cooldown", 30f, 10f, 120f, 5f, witchSpawnRate); - witchAdditionalCooldown = CustomOption.Create(352, "Witch Additional Cooldown", 10f, 0f, 60f, 5f, witchSpawnRate); - witchCanSpellAnyone = CustomOption.Create(353, "Witch Can Spell Anyone", false, witchSpawnRate); - witchSpellCastingDuration = CustomOption.Create(354, "Spell Casting Duration", 1f, 0f, 10f, 1f, witchSpawnRate); - witchTriggerBothCooldowns = CustomOption.Create(355, "Trigger Both Cooldowns", true, witchSpawnRate); + witchSpawnRate = CustomOption.Create(370, cs(Witch.color, "Witch"), rates, null, true); + witchCooldown = CustomOption.Create(371, "Witch Spell Casting Cooldown", 30f, 10f, 120f, 5f, witchSpawnRate); + witchAdditionalCooldown = CustomOption.Create(372, "Witch Additional Cooldown", 10f, 0f, 60f, 5f, witchSpawnRate); + witchCanSpellAnyone = CustomOption.Create(373, "Witch Can Spell Anyone", false, witchSpawnRate); + witchSpellCastingDuration = CustomOption.Create(374, "Spell Casting Duration", 1f, 0f, 10f, 1f, witchSpawnRate); + witchTriggerBothCooldowns = CustomOption.Create(375, "Trigger Both Cooldowns", true, witchSpawnRate); miniSpawnRate = CustomOption.Create(180, cs(Mini.color, "Mini"), rates, null, true); diff --git a/TheOtherRoles/Main.cs b/TheOtherRoles/Main.cs index 1190a869f..9175bf980 100644 --- a/TheOtherRoles/Main.cs +++ b/TheOtherRoles/Main.cs @@ -21,7 +21,7 @@ namespace TheOtherRoles public class TheOtherRolesPlugin : BasePlugin { public const string Id = "me.eisbison.theotherroles"; - public const string VersionString = "3.2.0"; + public const string VersionString = "3.2.1"; public static System.Version Version = System.Version.Parse(VersionString); internal static BepInEx.Logging.ManualLogSource Logger; diff --git a/TheOtherRoles/Modules/CustomOptions.cs b/TheOtherRoles/Modules/CustomOptions.cs index 699d018a9..fb6748b6d 100644 --- a/TheOtherRoles/Modules/CustomOptions.cs +++ b/TheOtherRoles/Modules/CustomOptions.cs @@ -391,10 +391,10 @@ private static void Postfix(ref string __result) gap = 6; index = hudString.TakeWhile(c => (gap -= (c == '\n' ? 1 : 0)) > 0).Count(); hudString = hudString.Insert(index, "\n"); - gap = 19; + gap = 20; index = hudString.TakeWhile(c => (gap -= (c == '\n' ? 1 : 0)) > 0).Count(); hudString = hudString.Insert(index + 1, "\n"); - gap = 25; + gap = 26; index = hudString.TakeWhile(c => (gap -= (c == '\n' ? 1 : 0)) > 0).Count(); hudString = hudString.Insert(index + 1, "\n"); } else if (counter == 2) { diff --git a/TheOtherRoles/TheOtherRoles.csproj b/TheOtherRoles/TheOtherRoles.csproj index a120c0fe2..920751d69 100644 --- a/TheOtherRoles/TheOtherRoles.csproj +++ b/TheOtherRoles/TheOtherRoles.csproj @@ -1,7 +1,7 @@ netstandard2.1 - 3.2.0 + 3.2.1 TheOtherRoles Eisbison