Skip to content

Commit 47c5829

Browse files
committed
Fixed add and sort usings, as well as added a whitespace
1 parent f20e5e0 commit 47c5829

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

NitroxClient/GameLogic/LocalPlayer.cs

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
using NitroxModel_Subnautica.DataStructures;
1313
using UnityEngine;
1414
using UnityEngine.Rendering;
15-
using UWE;
1615
using Object = UnityEngine.Object;
1716

1817
namespace NitroxClient.GameLogic;

NitroxClient/MonoBehaviours/Gui/InGame/DeathBeacon.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using System.Collections;
21
using NitroxModel.DataStructures.Unity;
32
using NitroxModel_Subnautica.DataStructures;
43
using UnityEngine;
@@ -27,6 +26,7 @@ private void Start()
2726
{
2827
InvokeRepeating(nameof(CheckPlayerDistance), 0, CHECK_RATE);
2928
}
29+
3030
private void CheckPlayerDistance()
3131
{
3232
if ((Player.main.transform.position - transform.position).sqrMagnitude <= DESPAWN_DISTANCE_SQUARED)

0 commit comments

Comments
 (0)