We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb1a778 commit 9512f15Copy full SHA for 9512f15
NetcodePatcher.MSBuild.Tasks/NetcodePatchTask.cs
@@ -43,6 +43,12 @@ public override bool Execute()
43
.InformationalVersion;
44
Serilog.Log.Information("Initializing NetcodePatcher v{Version:l}", toolVersion);
45
46
+ if (Patch.Length < 1)
47
+ {
48
+ Serilog.Log.Information("No targets specified for Netcode patching. NetcodePatcher done.");
49
+ return true;
50
+ }
51
+
52
var noOverwrite = false;
53
if (!string.IsNullOrEmpty(NoOverwrite))
54
{
0 commit comments