|
|
@@ -0,0 +1,15 @@ |
|
|
|
using System; |
|
|
|
using Harmony; |
|
|
|
|
|
|
|
namespace TestMod |
|
|
|
{ |
|
|
|
[HarmonyPatch(typeof(Analytics.DeltaDNAHelper), "StartSession", new Type[] {string})] |
|
|
|
public class AnalyticsPatch |
|
|
|
{ |
|
|
|
static bool Prefix(string userId) |
|
|
|
{ |
|
|
|
return false; // stop tracking startup |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|