Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
AlchlcDvl committed Jul 31, 2023
1 parent 6bd88f3 commit ca6ce87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ public override void UpdateHud(HudManager __instance)
{
var target = TargetPlayer ?? CustomPlayer.AllPlayers.Random(x => x != Player);
var role = GetRole(target);
CallRpc(CustomRPC.Change, TurnRPC.TurnSeer, this, role);
CallRpc(CustomRPC.Change, TurnRPC.TurnAct, this, role);
TurnAct(role);
}
}
Expand Down
2 changes: 1 addition & 1 deletion TownOfUsReworked/TownOfUsReworked.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public class TownOfUsReworked : BasePlugin
private const string VersionString = "0.4.3.0";
public static readonly Version Version = new(VersionString);

public const bool IsDev = true;
public const bool IsDev = false;
public static bool IsTest;
private static string VersionS => VersionString.Remove(VersionString.Length - 2);
private static string DevString => IsDev ? "-dev" : "";
Expand Down

0 comments on commit ca6ce87

Please sign in to comment.