Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions EntryPoint.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using INIUtility;
using LSPD_First_Response.Mod.API;
using MTFO.Handlers;
Expand All @@ -10,7 +11,8 @@ namespace MTFO
{
public class EntryPoint : Plugin
{
private const string Version = "v3.0.1.0";
private static readonly string Version = "v" + Assembly.GetExecutingAssembly().GetName().Version;

private static MtfoSettings Settings { get; set; }

public override void Initialize()
Expand Down Expand Up @@ -158,4 +160,4 @@ public static void ClearAllTrackedVehicles()
PluginState.IsStopSignIntersection = false;
}
}
}
}