Does the order of an entities properties (read 'lines') matter to the game? Obviously a member class of any given entity (i.e. InstantAction) must have its own properties as children, but does the order matter otherwise?
I haven't tested it, just wondering if anyone knows. I assume the TXT lines must always come first
For example are these two the same? (excerpt from AbilityBlackOut):
TXT
entityType "Ability"
buffInstantActionType "ApplyBuffToTarget"
instantActionTriggerType "AlwaysPerform"
buffType "BuffBlackOut"
...
TXT
entityType "Ability"
buffInstantActionType "ApplyBuffToTarget"
buffType "BuffBlackOut"
instantActionTriggerType "AlwaysPerform"
...