0.5.3.1d
Windows
Noticed in exploration.gd on line 1220 you have: slave.dom = rand_range(6,12)
I think it's meant to probably be: slave.dom += rand_range(6,12)
slave.dom starts between 40 and 60 for most slaves and given the context, I think it makes sense that you're trying to increment their dom value, not reset it to between 6 and 12.