Differences From Artifact [435c654ad9]:
- File mods/starlit/init.lua — part of check-in [6deb9bedbc] at 2024-05-02 20:27:05 on branch trunk — check in missing mod, add forest biome, racial powers, overlays (untested) (user: lexi, size: 13010) [annotate] [blame] [check-ins using]
To Artifact [d6e7e6c59c]:
- File mods/starlit/init.lua — part of check-in [511814aace] at 2024-05-03 21:00:04 on branch trunk — add primitive thermal hazard LEDs; further documentation (user: lexi, size: 13047) [annotate] [blame] [check-ins using]
28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
brightest = 14; -- only sun and growlights }; heat = { -- celsius freezing = 0; safe = 4; overheat = 32; boiling = 100; }; rad = { }; }; activeUsers = { -- map of username -> user object |
> |
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
brightest = 14; -- only sun and growlights
};
heat = { -- celsius
freezing = 0;
safe = 4;
overheat = 32;
boiling = 100;
thermalConductivity = 0.05; -- κ
};
rad = {
};
};
activeUsers = {
-- map of username -> user object
|