# Releases
| Among Us - Version| Mod Version | Link |
|----------|-------------|-----------------|
+| 2023.11.28s| v4.5.1| [Download](https://github.com/TheOtherRolesAU/TheOtherRoles/releases/download/v4.5.1/TheOtherRoles.zip)
| 2023.11.28s| v4.5.0| [Download](https://github.com/TheOtherRolesAU/TheOtherRoles/releases/download/v4.5.0/TheOtherRoles.zip)
| 2023.07.12s| v4.4.2| [Download](https://github.com/TheOtherRolesAU/TheOtherRoles/releases/download/v4.4.2/TheOtherRoles.zip)
# Changelog
<details>
<summary>Click to show the Changelog</summary>
+
+**Version 4.5.1**
+- Fix a bug that lead to Props not being able to use the disguise button
**Version 4.5.0**
- Updated to Among Us version 2023.11.28 (with the new map, Fungle)
}
public static void updateWhitelistedObjects() {
- TheOtherRolesPlugin.Logger.LogMessage($"updating whitelisted objects!");
- string allNames = Helpers.readTextFromResources("TheOtherRoles.Resources.Txt.props.txt");
- TheOtherRolesPlugin.Logger.LogMessage($"raed from res");
+ string allNames = Helpers.readTextFromResources("TheOtherRoles.Resources.Txt.Props.txt");
bool debug = false;
if (debug) {
- allNames = Helpers.readTextFromFile(System.IO.Directory.GetCurrentDirectory() + "\\props.txt");
+ allNames = Helpers.readTextFromFile(System.IO.Directory.GetCurrentDirectory() + "\\Props.txt");
}
TheOtherRolesPlugin.Logger.LogMessage($"after debug");
whitelistedObjects = allNames.Split(Environment.NewLine, StringSplitOptions.RemoveEmptyEntries).ToList();
public class TheOtherRolesPlugin : BasePlugin
{
public const string Id = "me.eisbison.theotherroles";
- public const string VersionString = "4.5.0";
+ public const string VersionString = "4.5.1";
public static uint betaDays = 0; // amount of days for the build to be usable (0 for infinite!)
public static Version Version = Version.Parse(VersionString);
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
- <Version>4.5.0</Version>
+ <Version>4.5.1</Version>
<Description>TheOtherRoles</Description>
<Authors>Eisbison</Authors>
<LangVersion>latest</LangVersion>