update atack meta: don't give such large bonus for large attacks

This commit is contained in:
Evan
2025-02-11 20:38:26 -08:00
parent 95a70dd8d3
commit c7847e4e44
2 changed files with 31 additions and 32 deletions
@@ -94,14 +94,6 @@ export class EventsDisplay extends LitElement implements Layer {
return;
}
myPlayer.incomingAttacks().forEach((a) => {
console.log(
`got type: ${(
this.game.playerBySmallID(a.attackerID) as PlayerView
).type()}`
);
});
// Update attacks
this.incomingAttacks = myPlayer.incomingAttacks().filter((a) => {
const t = (this.game.playerBySmallID(a.attackerID) as PlayerView).type();