SERVER: Fix kill stat for wunderwaffe

This commit is contained in:
blubs 2023-09-03 15:02:27 -07:00
parent 38a6f72edd
commit 1856d57e27

View file

@ -84,6 +84,7 @@ void(entity hit_ent, entity arc_parent, entity arc_owner, float arc_num, float d
// 50 points for waffe kills // 50 points for waffe kills
if(arc_owner.classname == "player") { if(arc_owner.classname == "player") {
arc_owner.kills += 1;
addmoney(arc_owner, 50, true); addmoney(arc_owner, 50, true);
} }
} }