Merge pull request #261 from JustAGenericUsername/main

the quick pipe fix 😭
This commit is contained in:
slweeb 2024-01-09 18:53:12 -05:00 committed by GitHub
commit 1bfface0f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1018,7 +1018,7 @@ elements.pipe.tick = function(pixel) {
var x = pixel.x+coord[0];
var y = pixel.y+coord[1];
if (isEmpty(x,y)) {
createPixel("brick",x,y);
createPixel("pipe_wall",x,y);
pixelMap[x][y].color = pixelColorPick(pixel,"#808080");
}
}