Merge pull request #23 from daffyyyy/patch-display_mysql_error

Update WeaponPaints.cs
This commit is contained in:
Nereziel
2023-11-14 16:14:43 +01:00
committed by GitHub

View File

@@ -182,9 +182,10 @@ public class WeaponPaints : BasePlugin, IPluginConfig<WeaponPaintsConfig>
gPlayerWeaponSeed[steamId.SteamId64][WeaponDefIndex] = Seed;
});
}
catch (Exception)
catch (Exception ex)
{
Console.WriteLine(ex);
return;
}
}
}
}