Differences From Artifact [822a964373]:
- File mods/starlit/world.lua — part of check-in [953151446f] at 2024-05-05 19:31:39 on branch trunk — better alarm LEDs, continue work on matter compiler UI, hack around gravitational horrorscape (i.e. stop shitting all over the server's `minetest.conf`), better stat interface, tweak some compute stats, be more generous with starting battery loadout, mercilessly squash numberless bugs beneath my jackbooted heel (user: lexi, size: 8734) [annotate] [blame] [check-ins using]
To Artifact [d1f4916ac1]:
- File mods/starlit/world.lua — part of check-in [3df08bd5ac] at 2024-05-06 16:20:04 on branch trunk — complete (-ish) matter compiler UI (power drain still missing), add printable chemical light (user: lexi, size: 8816) [annotate] [blame] [check-ins using]
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
attached_node = 3;
};
drop = st.drop;
_starlit = {
plant = {
id = id, stage = n;
};
recover = starlit.type.fab {
time = { shred = .3; };
cost = { shredPower = 1; };
};
recover_vary = function(rng, ctx)
return starlit.type.fab {
element = {
carbon = rng:int(0,1);
potassium = rng:int(0,1);
}
};
end;
};
}
if st.swap then
base.node_dig_prediction = ""
|
| | | > |
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
attached_node = 3;
};
drop = st.drop;
_starlit = {
plant = {
id = id, stage = n;
};
recover = b.recover or starlit.type.fab {
time = { shred = .3; };
cost = { shredPower = 1; };
};
recover_vary = b.recover_vary or function(rng, ctx)
return starlit.type.fab {
element = {
carbon = rng:int(0,2);
potassium = rng:int(0,1);
magnesium = rng:int(0,b.biolum and 2 or 1);
}
};
end;
};
}
if st.swap then
base.node_dig_prediction = ""
|