From 4e8afacaf90b37d8b0a0d8aa1fdf8451a7b21d57 Mon Sep 17 00:00:00 2001 From: slweeb <91897291+slweeb@users.noreply.github.com> Date: Tue, 28 Dec 2021 21:27:54 -0500 Subject: [PATCH] 0.7.1.2 --- changelog.txt | 4 ++++ index.html | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index 7bbf219e..06f6e545 100644 --- a/changelog.txt +++ b/changelog.txt @@ -2,12 +2,16 @@ + Artists' Update (Painting, Lines, Shapes, etc.) + Explosives Update + Electricity & Machines Update + + Mod Manager Update [Verion 0.7.1] + Sugar Water + Pollen = Honey + ~ Lowered Rat Plague spawn rates ~ Fixed: Water dissolves salt and sugar way too much ~ Fixed: Plants don't grow anymore + ~ Fixed: Fleas don't eat blood underneath them ~ Fixed: Info page says seconds instead of ticks + ~ Fixed: Info shows duplicate elements ~ Fixed: "1 ticks" [Version 0.7 - Density & Reactions] diff --git a/index.html b/index.html index 14de77e9..0ad7f470 100644 --- a/index.html +++ b/index.html @@ -775,7 +775,7 @@ "behavior": [ "M2|XX|M2", "DL:blood|XX|DL:blood", - "M2|M1|M2", + "M2|DL:blood%25 AND M1|M2", ], "tempHigh": 35, "stateHigh": "ash", @@ -1892,7 +1892,7 @@ "rat": { "color": "#b8aea5", "behavior": [ - "M2%5|CR:plague%1.5 AND M2%1.5|M2%5", + "M2%5|CR:plague%0.5 AND M2%1.5|M2%5", "M2|XX|M2", "M2|M1|M2", ], @@ -2580,7 +2580,7 @@ if (pixel.element != newPixel.element) { if (elements[newPixel.element].density != undefined && info.density != undefined) { // if the pixel's state + ">" + newPixel's state is in validDensitySwaps, and the pixel's density is larger than the newPixel's density, swap the pixels - if (validDensitySwaps.includes(info.state+">"+elements[newPixel.element].state) && info.density > elements[newPixel.element].density) { + if (validDensitySwaps.includes(info.state+">"+elements[newPixel.element].state) && info.density >= elements[newPixel.element].density) { // chance depending on the difference in density if (Math.random() < (info.density - elements[newPixel.element].density)/(info.density + elements[newPixel.element].density)) { swapPixels(pixel,newPixel); @@ -3557,10 +3557,10 @@ for (var k = 0; k < b0.split(" AND ").length; k++) { if (info.hidden) { infoText.innerHTML += "\nHidden from toolbar."; } if (info.density != undefined) { infoText.innerHTML += "\nDensity: "+info.density+"kg⁄m3."; } if (info.tempHigh != undefined) { - infoText.innerHTML += "\nTurns into "+infoLink(info.stateHigh || "[???]")+" at "+info.tempHigh+"°C."; + infoText.innerHTML += "\nTurns into "+infoLink(info.stateHigh || "[???]")+" above "+info.tempHigh+"°C."; } if (info.tempLow != undefined) { - infoText.innerHTML += "\nTurns into "+infoLink(info.stateLow || "[???]")+" at "+info.tempLow+"°C."; + infoText.innerHTML += "\nTurns into "+infoLink(info.stateLow || "[???]")+" below "+info.tempLow+"°C."; } if (info.burn != undefined) { infoText.innerHTML += "\nFlammability: "+info.burn+"%."; } if (info.burnTime != undefined) { @@ -3838,7 +3838,7 @@ for (var k = 0; k < b0.split(" AND ").length; k++) {
- +