diff --git a/sc2/ChangeLog b/sc2/ChangeLog index d61bca47c..19fa20ee4 100644 --- a/sc2/ChangeLog +++ b/sc2/ChangeLog @@ -1,4 +1,5 @@ Changes towards version 0.3: +- Fixed screen transitions from homeworld conversations (bug #348) -Michael - Fixed Fwiffo join_us_refusals initialization (bug #405) -Mika - Fix Druuge transactions to not elevate crew costs baselessly (bug #235), from ghakko diff --git a/sc2/src/sc2code/planets/solarsys.c b/sc2/src/sc2code/planets/solarsys.c index 0eb75f371..882e6e352 100644 --- a/sc2/src/sc2code/planets/solarsys.c +++ b/sc2/src/sc2code/planets/solarsys.c @@ -1355,9 +1355,12 @@ StartGroups: if (pSolarSysState->MenuState.flash_task == 0) { + /* Note! This implies that our GenFunc was a + conversation; that is, that this is a homeworld */ LoadSolarSys (); ValidateOrbits (); DrawInnerSystem (); + draw_sys_flags |= UNBATCH_SYS; goto StartGroups; }