diff --git a/EXILED/Exiled.API/Features/Items/Item.cs b/EXILED/Exiled.API/Features/Items/Item.cs index c55a6e75ba..98a80a6d51 100644 --- a/EXILED/Exiled.API/Features/Items/Item.cs +++ b/EXILED/Exiled.API/Features/Items/Item.cs @@ -314,6 +314,7 @@ ItemType.KeycardGuard or ItemType.KeycardJanitor or ItemType.KeycardO5 or ItemTy ItemType.SCP1576 => new Scp1576(), ItemType.SCP1344 => new Scp1344(), ItemType.Jailbird => new Jailbird(), + ItemType.Snowball or ItemType.Coal or ItemType.SpecialCoal => new Throwable(type), _ => new Item(type), }; diff --git a/EXILED/Exiled.API/Features/Pickups/Pickup.cs b/EXILED/Exiled.API/Features/Pickups/Pickup.cs index e4ed1b5850..ccc03f2af7 100644 --- a/EXILED/Exiled.API/Features/Pickups/Pickup.cs +++ b/EXILED/Exiled.API/Features/Pickups/Pickup.cs @@ -491,6 +491,7 @@ public static IEnumerable Get(IEnumerable gameObjects) ItemType.SCP1576 => new Scp1576Pickup(), ItemType.SCP2176 => new Projectiles.Scp2176Projectile(), ItemType.SCP018 => new Projectiles.Scp018Projectile(), + ItemType.Snowball or ItemType.Coal or ItemType.SpecialCoal => new Projectile(type), _ => new Pickup(type), };