mod split

This commit is contained in:
Lily-129 2022-02-23 20:07:53 -05:00 committed by GitHub
parent daf0451c58
commit 41e899929b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 18 deletions

View File

@ -87,21 +87,3 @@ elements.rg3 = {
category: "tools",
excludeRandom: true,
};
elements.daoe = {
name: "delete all of element",
color: ["#a7a7a7", "#a7a7a7", "#a7a7a7", "#a7a7a7", "#000000", "#000000", "#000000", "#000000"],
tool: function(pixel) {
for (var i = 1; i < width; i++) {
for (var j = 1; j < height; j++) {
if (!isEmpty(i,j)) {
if(pixelMap[i][j].element == pixel.element) {
deletePixel(i,j)
}
}
}
}
},
category: "tools",
excludeRandom: true,
};