We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7aa6af commit 6e433eaCopy full SHA for 6e433ea
1 file changed
NewStarTelemetryPlugin.cs
@@ -1,21 +1,14 @@
1
using BepInEx;
2
+using BepInEx.Configuration;
3
using BepInEx.Logging;
4
-using NSGP;
5
-
+using System.Linq;
6
using System.Net;
7
-using System.Runtime.InteropServices;
8
9
-using TelemetryLib.Telemetry;
10
11
using TelemetryLib;
+using TelemetryLib.Telemetry;
12
13
using UnityEngine;
14
-using System.Collections.Generic;
15
-using System.Linq;
16
-using HarmonyLib;
17
-using UnityEngine.UIElements;
18
-using BepInEx.Configuration;
19
20
namespace com.drowhunter.NewStarGPTelemetryMod
21
{
@@ -134,7 +127,7 @@ private void FixedUpdate()
134
127
var allowDriving = vehicle.allowDriving;
135
128
136
129
137
- doTelemetry = (allowDriving && !isRaceOver && isRacing);
130
+ doTelemetry = (allowDriving && !isRaceOver);
138
131
139
132
if(!doTelemetry)
140
133
0 commit comments