Merge branch 'R74nCom:main' into main

This commit is contained in:
HACKERPRO908 2024-03-04 08:33:21 +00:00 committed by GitHub
commit e874f6959c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -1196,7 +1196,7 @@ elements.filter = {
break;
}
}
else if (!pixel.con && elements[newPixel.element].movable && (newPixel.element == pixel.filterType) ) { //suck up pixel
else if (!pixel.con && (newPixel.element == pixel.filterType) ) { //suck up pixel
pixel.con = newPixel;
deletePixel(newPixel.x,newPixel.y);
pixel.con.x = pixel.x;
@ -2011,7 +2011,7 @@ elements.element_filler = {
state: "solid",
movable: "false",
onSelect: function() {
var answer6 = prompt("Please input the desired element of this filler. It will not work if you do multiple filter types while paused.",(elemfillerVar||undefined));
var answer6 = prompt("Please input the desired element of this filler. It will not work if you do multiple filler types while paused.",(elemfillerVar||undefined));
if (!answer6) { return }
elemfillerVar = mostSimilarElement(answer6);
},
@ -2044,7 +2044,7 @@ elements.outliner = {
category: elements.filler.category,
excludeRandom: true,
onSelect: function() {
var answerot = prompt("Please input the desired element of this outliner. It will not work if you do multiple filter types while paused.",(outlinerVar||undefined));
var answerot = prompt("Please input the desired element of this outliner. It will not work if you do multiple outliner types while paused.",(outlinerVar||undefined));
if (!answerot) { return }
outlinerVar = mostSimilarElement(answerot);
},