First, for this discussion, say sections are defined as [type:identifier:parent]
Say I have
Code: Select all
[item:a:b]
{
name = howdy
}
Code: Select all
[item:b]
{
color =red
name = base
}
would it be ok to effectively build section [item a] and then modify any duplicate value, and then append any additional? I think this order
is backwards from how UOX is today. Does anyone see any issues with that?
So effectively item a would look like
Code: Select all
[item a]
{
name = howdy
color = red
}