We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f964a2 commit 63ca769Copy full SHA for 63ca769
2 files changed
client/src/playback/Map.ts
@@ -317,9 +317,11 @@ export class CurrentMap {
317
}
318
if (ratTrap) {
319
info.push('Rat Trap')
320
+ info.push(`Placed by ${TEAM_COLOR_NAMES[ratTrap - 2]}`)
321
322
if (catTrap) {
323
info.push('Cat Trap')
324
+ info.push(`Placed by ${TEAM_COLOR_NAMES[catTrap - 2]}`)
325
326
if (cheese) {
327
info.push(`Cheese: ${cheese}`)
client/src/playback/RoundStat.ts
@@ -19,6 +19,7 @@ export class TeamRoundStat {
19
ratKingCount: number = 0
20
ratKingPercent: number = 0
21
dirtAmount: number = 0
22
+ globalCheeseAmount: number = 0
23
babyRatCount: number = 0
24
ratTrapAmount: number = 0
25
catTrapAmount: number = 0
0 commit comments