From 23b890f4f02695a7e7e8e6bc8825e1e81f601293 Mon Sep 17 00:00:00 2001 From: biglyderv Date: Mon, 25 Nov 2024 14:14:21 -0500 Subject: [PATCH] buff kills --- common/player.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/player.js b/common/player.js index 9e02f12..dd2b016 100644 --- a/common/player.js +++ b/common/player.js @@ -117,7 +117,7 @@ class Player extends Entity { console.log(`Player ${target.you} died to a player ${ent.you}`); ent.health -= dmg; if (ent.health > 100) ent.health = 100; - ent.headCount += 100; + ent.headCount += 500; } } }