Skip to content

Commit

Permalink
Merge pull request #930 from JustAGenericUsername/main
Browse files Browse the repository at this point in the history
the hehehahahahah update!!!!!111!
  • Loading branch information
slweeb authored Jan 11, 2025
2 parents 41ae1fb + 5274c84 commit 1093184
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions mods/nousersthings.js
Original file line number Diff line number Diff line change
Expand Up @@ -2510,8 +2510,7 @@ elements.solid_diamond = {
"l": "#A2DBF2",
"S": "#BDF8FF"
},
tempHigh: elements.diamond.tempHigh,
stateHigh: elements.diamond.stateHigh,
reactions: elements.diamond.reactions,
state: "solid",
density: elements.diamond.density,
hardness: elements.diamond.hardness,
Expand Down Expand Up @@ -2629,6 +2628,7 @@ elements.spacedust_cola = {
state: "liquid",
reactions: {head: {elem1: null, chance: 0.02}},
density: elements.tungsten.density,
isFood: true,
}
elements.spacedust = {
color: ["#090033", "#0a0027", "#0a001b", "#0b000f", "#090033", "#0a0027", "#0a001b", "#0b000f", "#090033", "#0a0027", "#0a001b", "#0b000f", "#090033", "#0a0027", "#0a001b", "#0b000f", "#090033", "#0a0027", "#0a001b", "#0b000f", "#090033", "#0a0027", "#0a001b", "#0b000f", "#ffffff"],
Expand Down Expand Up @@ -3779,9 +3779,10 @@ elements.pipe_transmitter = {
for (x in pixelMap){
for (y in pixelMap[x]){
if (!isEmpty(x, y, true)){
if (pixelMap[x][y].element == "pipe_receiver" && pixelMap[x][y].channel == pixel.channel){
if (pixelMap[x][y].element == "pipe_receiver" && pixelMap[x][y].channel == pixel.channel && !pixelMap[x][y].con){
pixelMap[x][y].con = pixel.con;
delete pixel.con;
break;
}
}
}
Expand Down Expand Up @@ -3812,7 +3813,7 @@ elements.pipe_receiver = {
if (!isEmpty(x, y, true)){
if (listPipes.includes(pixelMap[x][y].element)){
if (["channel_pipe", "destroyable_channel_pipe"].includes(pixelMap[x][y].element)){
if (pixelMap[x][y].channel == pixel.channel){
if (pixelMap[x][y].channel == pixel.channel && !pixelMap[x][y].con){
pixelMap[x][y].con = pixel.con;
delete pixel.con;
}
Expand Down

0 comments on commit 1093184

Please sign in to comment.