Spacing and separation error message is inverted
In StructureFeatureConfiguration, the game checks that separation is smaller than spacing. However if this is not the case, the error it returns is inverted.
return var0.spacing <= var0.separation ? DataResult.error("Spacing has to be smaller than separation") : DataResult.success(var0);