- Updated css
- Minor changes
This commit is contained in:
Dawid Bepierszcz
2024-01-18 01:36:05 +01:00
parent 55905ccc33
commit d04bc0879a
6 changed files with 24 additions and 16 deletions

View File

@@ -1,6 +1,7 @@
using Dapper;
using MySqlConnector;
using Newtonsoft.Json.Linq;
using System.Collections.Concurrent;
namespace WeaponPaints
{
@@ -94,7 +95,7 @@ namespace WeaponPaints
if (!WeaponPaints.gPlayerWeaponsInfo.TryGetValue(player.Index, out _))
{
WeaponPaints.gPlayerWeaponsInfo[player.Index] = new Dictionary<int, WeaponInfo>();
WeaponPaints.gPlayerWeaponsInfo[player.Index] = new ConcurrentDictionary<int, WeaponInfo>();
}
try
{