We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c39a13f commit 255afb5Copy full SHA for 255afb5
1 file changed
client/src/playback/Map.ts
@@ -562,17 +562,6 @@ export class StaticMap {
562
this.dimension.height
563
)
564
565
- const dirtImg = getImageIfLoaded('dirty.png')
566
- if (dirtImg) {
567
- ctx.drawImage(
568
- dirtImg,
569
- this.dimension.minCorner.x,
570
- this.dimension.minCorner.y,
571
- this.dimension.width,
572
- this.dimension.height
573
- )
574
- }
575
-
576
for (let i = 0; i < this.dimension.width; i++) {
577
for (let j = 0; j < this.dimension.height; j++) {
578
const schemaIdx = this.locationToIndexUnchecked(i, j)
0 commit comments