defined var

This commit is contained in:
Lily-129 2022-02-11 22:43:24 -05:00 committed by GitHub
parent 5b82ae64d4
commit 2a9b5e5c88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -19,7 +19,7 @@ elements.signalum = {
category: "solids",
density: 10500,
conduct: 1,
tempHigh: 550,
tempHigh: 1550,
stateHigh: "molten_signalum",
state: "solid",
},
@ -213,3 +213,9 @@ elements.resonant_ender = {
state: "liquid",
viscosity: 3**4,
}
runAfterLoad(function() {
lifeArray = Object.keys(elements).filter(function(e) {
return elements[e].category == "life";
});
});