Skip to content

Commit db1bf0a

Browse files
committed
prepare for release
1 parent 562bf5f commit db1bf0a

7 files changed

Lines changed: 4 additions & 20 deletions

File tree

GameTweaks/GameTweaksManager.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ public class GameTweaksManager(IntPtr cppPtr) : MonoBehaviour(cppPtr)
2424
void Start()
2525
{
2626
Instance = this;
27-
Warning("GameTweaksManager created");
2827
foreach (var (_, type) in TweakTypes)
2928
{
3029
var tweak = CreateTweak(type);

GameTweaks/GameTweaksPlugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public partial class GameTweaksPlugin : BasePlugin, IMiraPlugin
2626
public ConfigFile GetConfigFile() => Config;
2727

2828
public static bool IsMobile => Constants.GetPlatformType() is Platforms.Android or Platforms.IPhone;
29-
public static bool DevMode => Version.Contains("ci", StringComparison.OrdinalIgnoreCase) || Version.Contains("dev", StringComparison.OrdinalIgnoreCase);
29+
public static bool DevMode => false;
3030

3131
public override void Load()
3232
{

GameTweaks/Patches/AprilFoolsPatch.cs

Lines changed: 0 additions & 13 deletions
This file was deleted.

GameTweaks/Tweaks/AnomalyTweak.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ private static IEnumerator CoStart()
5353
.ToList();
5454
if (tweaks.Count == 0)
5555
{
56-
Warning("No valid tweaks found for Anomaly");
56+
Error("No valid tweaks found for Anomaly");
5757
yield break;
5858
}
5959

@@ -102,6 +102,5 @@ private static IEnumerator CoSelectTweak(ushort tweakId)
102102
}
103103

104104
instance.AddTweak(tweak);
105-
Warning($"RpcAnomalySelectTweak: Selected {tweakId}");
106105
}
107106
}

GameTweaks/Tweaks/ElectionTweak.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ public static void StartMeetingEventHandler(StartMeetingEvent @event)
4444
return;
4545
}
4646

47-
Warning("Election enabled");
4847
currentlyElection = true;
4948
}
5049

GameTweaks/Tweaks/TacticalDeploymentTweak.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public static IEnumerator PickDeployment()
7171
var map = MiscUtils.GetCurrentMap;
7272
if (!Positions.TryGetValue(map, out var list) || list.Length == 0)
7373
{
74-
Warning($"{map} is not valid Tactical Deployment");
74+
Error($"{map} is not valid Tactical Deployment");
7575
yield break;
7676
}
7777

GameTweaks/Tweaks/VipTweak.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public static void PickVip()
5656
.ToList();
5757
if (possiblePlayers.Count == 0)
5858
{
59-
Warning("No valid players found for VIP");
59+
Error("No valid players found for VIP");
6060
return;
6161
}
6262

0 commit comments

Comments
 (0)