diff --git a/EXILED/Exiled.CustomItems/API/Features/CustomWeapon.cs b/EXILED/Exiled.CustomItems/API/Features/CustomWeapon.cs
index 68fe0103e7..277037494e 100644
--- a/EXILED/Exiled.CustomItems/API/Features/CustomWeapon.cs
+++ b/EXILED/Exiled.CustomItems/API/Features/CustomWeapon.cs
@@ -52,7 +52,7 @@ public override ItemType Type
///
/// Gets or sets the weapon damage.
///
- public virtual float Damage { get; set; } = float.NaN;
+ public virtual float Damage { get; set; } = -1;
///
/// Gets or sets a value indicating how big of a clip the weapon will have.
@@ -205,7 +205,7 @@ protected virtual void OnShot(ShotEventArgs ev)
/// .
protected virtual void OnHurting(HurtingEventArgs ev)
{
- if (ev.IsAllowed && Damage != float.NaN)
+ if (ev.IsAllowed && Damage >= 0)
ev.Amount = Damage;
}