Lets you mix Birthpool and Primordial Soup

Sets the Birthpool density to the PSoup density and sets its state to liquid
This commit is contained in:
Lily-129 2022-04-29 21:29:23 -04:00 committed by GitHub
parent 5a6f2bef36
commit 014624e6ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
if(enabledMods.includes("mods/fey_and_more.js")) {
elements.birthpool.density = elements.primordial_soup.density;
elements.birthpool.state = "liquid";
};
runAfterLoad(function() {
if(enabledMods.includes("mods/fey_and_more.js")) {
elements.birthpool.density = elements.primordial_soup.density;
elements.birthpool.state = "liquid";
};
});