Differences From Artifact [ac25f2dec5]:
- File mods/starlit/store.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: 1856) [annotate] [blame] [check-ins using]
To Artifact [49ffbb2ad8]:
- File mods/starlit/store.lua — part of check-in [52a4f364ac] at 2024-05-07 03:45:58 on branch trunk — compiler now draws power, better compile job progress bars, stats screen refreshes (user: lexi, size: 1907) [annotate] [blame] [check-ins using]
23 23 ) 24 24 end 25 25 26 26 starlit.store.compilerJob = G.struct { 27 27 schematic = T.str; 28 28 cyclesLeft = T.u64; 29 29 timeLeft = T.decimal; 30 + powerLeft = T.decimal; 31 + numinaLeft = T.decimal; 30 32 } 31 33 32 34 starlit.store.persona = G.struct { 33 35 name = T.str; 34 36 species = T.str; 35 37 speciesVariant = T.str; 36 38 background = T.str;