This commit is contained in:
Laetitia (O-01-67) 2022-12-12 11:29:12 -05:00 committed by GitHub
parent ea89778e50
commit a5dbbe3519
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -96,9 +96,6 @@ if(enabledMods.includes(loonaMod) && enabledMods.includes(runAfterAutogenMod) &&
} else { } else {
var category = info.category; var category = info.category;
}; };
if(excludedSpoutElements.includes(name)) {
return false
};
var include = false; var include = false;
if(["liquid","gas"].includes(state)) { if(["liquid","gas"].includes(state)) {
include = true; include = true;
@ -500,6 +497,7 @@ if(enabledMods.includes(loonaMod) && enabledMods.includes(runAfterAutogenMod) &&
if(isEmpty(rfX,rfY,false)) { if(isEmpty(rfX,rfY,false)) {
var randomEligibleHotElement = hotHeejiniteElements[Math.floor(Math.random() * hotHeejiniteElements.length)]; var randomEligibleHotElement = hotHeejiniteElements[Math.floor(Math.random() * hotHeejiniteElements.length)];
createPixel(randomEligibleHotElement,rfX,rfY); createPixel(randomEligibleHotElement,rfX,rfY);
pixelMap[rfX][rfY].temp = pixel.temp;
}; };
}; };
}; };