We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a427cd2 commit 149d58fCopy full SHA for 149d58f
1 file changed
client/src/playback/Map.ts
@@ -284,6 +284,8 @@ export class CurrentMap {
284
285
const dirt = this.dirt[schemaIdx]
286
const wall = this.staticMap.walls[schemaIdx]
287
+ const ratTrap = this.ratTrapData[schemaIdx]
288
+ const catTrap = this.catTrapData[schemaIdx]
289
const cheeseMine = this.staticMap.cheeseMines.find((r) => r.x === square.x && r.y === square.y)
290
const cheese = this.cheeseData[schemaIdx]
291
const srp = this.resourcePatterns.find((r) => r.center.x === square.x && r.center.y === square.y)
@@ -313,6 +315,12 @@ export class CurrentMap {
313
315
if (dirt) {
314
316
info.push('Dirt')
317
}
318
+ if (ratTrap) {
319
+ info.push('Rat Trap')
320
+ }
321
322
+ info.push('Cat Trap')
323
324
if (cheese) {
325
info.push(`Cheese: ${cheese}`)
326
0 commit comments