v1 #4

Merged
rebillar merged 50 commits from dev into master 2023-12-29 21:34:13 +01:00
Showing only changes of commit d075d532d7 - Show all commits

View file

@ -41,6 +41,12 @@ class Player
this.death++; this.death++;
this.health=defaulthealth; this.health=defaulthealth;
players.forEach((p) => {
if(p.id==killerId) {
p.kill++;
}
});
net.died(this.id,killerId); net.died(this.id,killerId);
} }
} }