fixed typo

This commit is contained in:
Dr-Lego 2024-07-07 19:22:27 +02:00
parent 1b570e62c6
commit 8295bf150e
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ elements.fire_extinguisher = {
if (fx >= 0 && fx < width && fy >= 0 && fy < height) {
let targetPixel = pixelMap[fx][fy];
if (!targetPixel || targetPixel.element === "air") {
createPixel("fire_extinguisher_foam", fx, fy);
createPixel("firefighting_foam", fx, fy);
}
}
}