It seems the Mac saves property floats as 64 bit numbers and the windows build saves them as 32 bit floats.
On the mac:
<properties>
<property name="odds" type="float" value="0.050000000000000003"/>
</properties>
On windows:
<properties>
<property name="odds" type="float" value="0.05"/>
</properties>
Normally this wouldn’t matter, but in version control these lines keep showing up as changed depending on which machine opened them last.
I could be wrong about 32 vs 64 being the cause, but they are saved differently for some reason.