Skip to content

Commit bb569c2

Browse files
committed
beta 11
1 parent ff70f3b commit bb569c2

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Modules/CustomRpcSender.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ public static void RpcSetName(this CustomRpcSender sender, PlayerControl player,
357357
{
358358
case true when Main.LastNotifyNames.Where(x => x.Key.Item1 == player.PlayerId).All(x => x.Value == name):
359359
case false when Main.LastNotifyNames[(player.PlayerId, seer.PlayerId)] == name:
360-
Logger.Info($"Skipped setting name of {player.GetRealName()} for seer {saw} because it was the same as previous", "RpcSetName");
360+
// Logger.Info($"Skipped setting name of {player.GetRealName()} for seer {saw} because it was the same as previous", "RpcSetName");
361361
return;
362362
case true:
363363
Main.EnumeratePlayerControls().Do(x => Main.LastNotifyNames[(player.PlayerId, x.PlayerId)] = name);

main.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ public class Main : BasePlugin
5757

5858
public const string PluginGuid = "com.0xdrmoe.townofhostenhanced";
5959
public const string PluginGuid4 = "90759289-1d0d-494b-b36c-839f93ae0df1"; // for matchmaking token
60-
public const string PluginVersion = "2026.0220.242.10000"; // YEAR.MMDD.VERSION.CANARYDEV
61-
public const string PluginDisplayVersion = "2.4.2 Beta 10";
60+
public const string PluginVersion = "2026.0220.242.11000"; // YEAR.MMDD.VERSION.CANARYDEV
61+
public const string PluginDisplayVersion = "2.4.2 Beta 11";
6262
public static readonly List<(int year, int month, int day, int revision)> SupportedVersionAU =
6363
[
6464
(2025, 11, 18, 0), // 2025.11.18 & 17.1
@@ -70,7 +70,7 @@ public class Main : BasePlugin
7070

7171
#pragma warning disable IDE1006 // Naming Styles
7272
public static bool devRelease => RELEASE == Release.ALPHA; // Latest: v3.0.0 Alpha 30
73-
public static bool canaryRelease => RELEASE == Release.BETA; // Latest: V2.4.2 Beta 10
73+
public static bool canaryRelease => RELEASE == Release.BETA; // Latest: V2.4.2 Beta 11
7474
public static bool fullRelease => RELEASE == Release.RELEASE; // Latest: V2.4.1 hotfix 1
7575
#pragma warning restore IDE1006 // Naming Styles
7676

@@ -584,7 +584,7 @@ public override void Load()
584584
TOHE.Logger.Disable("SwitchSystem");
585585
TOHE.Logger.Disable("ModNews");
586586
TOHE.Logger.Disable("RpcSetNamePrivate");
587-
// TOHE.Logger.Disable("SendRPC");
587+
TOHE.Logger.Disable("SendRPC");
588588
TOHE.Logger.Disable("KnowRoleTarget");
589589
// TOHE.Logger.Disable("CustomRpcSender");
590590
if (!DebugModeManager.AmDebugger)

0 commit comments

Comments
 (0)