If I want to create a new conductive/wire element that uses SPRK, would I have to rewrite the SPRK update function, or is it automatically compatible somehow
Properties = ... | PROP_CONDUCTS | PROP_LIFE_DEC;
... if they're not already there; this is how METL does it. In Lua it'd be something likeelem.property(your_id, "Properties", bit.bor(elem.property(your_id, "Properties"), elem.PROP_CONDUCTS, elem.PROP_LIFE_DEC))
ah, thanks. so if i do create an element, for example a "silver" element based on brck, which just has CONDUCTS and LIFE_DEC with no update function, what elements would it conduct to and from by default?