Normal
First recommendation: don't use multiple[CODE=XML] <Register Location="/Configuration/Settings/Plugins/AtmoLight"><ConfigSectionId="General"Redundant="true"Text="[AtmoLight.General]"/></Register><Register Location="/Configuration/Settings/Plugins/AtmoLight"><ConfigSectionId="Effects"Redundant="true"Text="[AtmoLight.Effects]"/></Register> [/CODE]but combine them into single <Register>:[CODE=XML] <Register Location="/Configuration/Settings/Plugins/AtmoLight"><ConfigSectionId="General"Redundant="true"Text="[AtmoLight.General]"/><ConfigSectionId="Effects"Redundant="true"Text="[AtmoLight.Effects]"/></Register> [/CODE]Probably not related, but avoiding redundancies is always good.And to Redundant="true" is only required, if you expect this section could have been created by another plugin. In your case you should remove it.I didn't find any sorting for ListItems yet, but I don't have more time now.
First recommendation: don't use multiple
[CODE=XML] <Register Location="/Configuration/Settings/Plugins/AtmoLight">
<ConfigSection
Id="General"
Redundant="true"
Text="[AtmoLight.General]"/>
</Register>
<Register Location="/Configuration/Settings/Plugins/AtmoLight">
Id="Effects"
Text="[AtmoLight.Effects]"/>
</Register> [/CODE]
but combine them into single <Register>:
Probably not related, but avoiding redundancies is always good.
And to Redundant="true" is only required, if you expect this section could have been created by another plugin. In your case you should remove it.
I didn't find any sorting for ListItems yet, but I don't have more time now.