I've run into a very specific conflict with
Distant_Suns.
When jumping to "Ara" Oolite (both 1.80 & 1.81) on Mac OS
Code: Select all
Opening log for Oolite development version 1.81-140829 (x86-64 test release) under Mac OS X Version 10.9.4 (Build 13E28) at 2014-08-31 16:23:36 +0000.
Machine type: iMac11,2, 12288 MiB memory, 2 (4 logical) x x86 (Westmere) @ 3200 MHz.
stopped responding at the end of the countdown requiring me to forced quit Oolite.
By removing and adding OXP & OXZs I discovered there was some conflict with Distant_Suns. Now as I've been running both OXPs since In-system traders came out without a problem, this seemed specific to Ara. Looking at the planet info.plist in Distant_Suns, Ara's sun is moved a long way away. So by reducing sun_distance_modifier everything works well again.
Changed
Code: Select all
"0 245" = { // name = "Ara";
corona_flare = "0.800"; corona_hues = "0.20"; corona_shimmer = "0.38"; sun_color = "cyanColor";
sun_distance_modifier = "175"; sun_name = "Wyndham 1970"; // sun_radius = "";
};
to
Code: Select all
"0 245" = { // name = "Ara";
corona_flare = "0.800"; corona_hues = "0.20"; corona_shimmer = "0.38"; sun_color = "cyanColor";
sun_distance_modifier = "149"; sun_name = "Wyndham 1970"; // sun_radius = "";
};
149 is the largest working value.
I have visited other systems with sun_distance_modifier larger than 149 without problem (I'm speculating -wildly perhaps

that it's the resultant overall distance that's causing the problem)
I would guess there are more of these specific system conflicts out there to be found.