From d532984283859a3c0fa131e5557298d074c8b18c Mon Sep 17 00:00:00 2001 From: legonzaur Date: Fri, 18 Aug 2023 20:01:53 +0200 Subject: [PATCH] remove console logs --- mod/scripts/vscripts/matchstat.nut | 6 ------ 1 file changed, 6 deletions(-) diff --git a/mod/scripts/vscripts/matchstat.nut b/mod/scripts/vscripts/matchstat.nut index 19f9e45..29da781 100644 --- a/mod/scripts/vscripts/matchstat.nut +++ b/mod/scripts/vscripts/matchstat.nut @@ -48,9 +48,6 @@ void function OnWeaponFired(entity weapon, WeaponPrimaryAttackParams attackParam } void function OnDamage( entity victim, var damageInfo){ - // if(!victim.IsPlayer()){ - // return - // } entity player = DamageInfo_GetAttacker( damageInfo ) if(!IsValid(player) || !player.IsPlayer()){ @@ -81,9 +78,6 @@ void function OnDamage( entity victim, var damageInfo){ if(headshot){ file.weaponsUsed[player][weaponName].shotHeadshot++ } - - print("crit " + string(file.weaponsUsed[player][weaponName].shotCrit)) - print("headshot " + string(file.weaponsUsed[player][weaponName].shotHeadshot)) } void function TrackTitanWeapons( entity player ){