Small fix

This commit is contained in:
EntenKoeniq 2022-04-14 12:33:19 +02:00
parent 146cc709eb
commit 371e3659ab
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<AssemblyVersion>1.52.1.0001</AssemblyVersion>
<AssemblyVersion>1.52.2.0001</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<RepositoryUrl>https://github.com/GTACOOP-R/GTACoop-R</RepositoryUrl>
</PropertyGroup>

View File

@ -31,7 +31,7 @@ namespace CoopServer
public static NetServer MainNetServer;
public static Resource RunningResource = null;
public static Dictionary<Command, Action<CommandContext>> Commands;
public static readonly Dictionary<Command, Action<CommandContext>> Commands = new();
public static readonly Dictionary<TriggerEvent, Action<EventContext>> TriggerEvents = new();
public static readonly List<Client> Clients = new();