From 59cf8f56e3d1d2303564f37452a2543116f7522b Mon Sep 17 00:00:00 2001 From: Zuxxied Date: Sat, 19 Oct 2024 18:28:33 -0400 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; } } }