Skip to content

Commit

Permalink
Fix metermeters (mm)
Browse files Browse the repository at this point in the history
  • Loading branch information
lixfel authored Apr 6, 2024
1 parent c1dbed4 commit 508d599
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/texts.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export const mapGameEventToText = function (event) {
}
if (event.attackerTooCloseToDefenseArea != null) {
return `${teamAndBot(event.attackerTooCloseToDefenseArea)} too close to opponent defense area `
+ `(${distance(event.attackerTooCloseToDefenseArea.distance)}m)`;
+ `(${distance(event.attackerTooCloseToDefenseArea.distance)})`;
}
if (event.botInterferedPlacement != null) {
return `${teamAndBot(event.botInterferedPlacement)} interfered placement`;
Expand Down

0 comments on commit 508d599

Please sign in to comment.