diff --git a/src/model/Match.ts b/src/model/Match.ts index 7793fa4..a618518 100644 --- a/src/model/Match.ts +++ b/src/model/Match.ts @@ -396,8 +396,8 @@ export class Match { const newMoney = scoreboardData.money; const oldMoney = team.getMoneyFor(scoreboardData.playerId); - // Received money during round, spike must have been planted - if (newMoney > oldMoney) { + // Received 300 money during round, spike must have been planted + if (newMoney > oldMoney && newMoney - oldMoney === 300) { this._setSpikePlanted(data.timestamp); } }