Removed Timers for Cooldowns for Items.

This commit is contained in:
2021-04-22 19:51:52 +02:00
parent c77c078141
commit 3b04a0776e
3 changed files with 20 additions and 33 deletions

View File

@@ -34,7 +34,7 @@ namespace ReallifeGamemode.Server.Managers
public static Dictionary<Player, List<InventoryItem>> backpackItems { get; set; } = new Dictionary<Player, List<InventoryItem>>();
public static Dictionary<Player, List<InventoryItem>> vehicleItems { get; set; } = new Dictionary<Player, List<InventoryItem>>();
public static Dictionary<Player, PlayerTimer> itemCooldown = new Dictionary<Player, PlayerTimer>();
public static Dictionary<User, DateTime> itemCooldown = new Dictionary<User, DateTime>();
public class InventoryItem
{