Selchain behaviour change rhino 5 to 6

Hi,
I am trying to understand how the SelChain behaviour has changed in rhino 6. The following script has two different outcome in rhino 5 and 6:

import rhinoscriptsyntax as rs

rs.Command('_SelChain _SelID e7423f0d-1196-41bf-b371-af76f1472dce  _AngleTolerance=1 _GapTolerance=0.001 _ChainContinuity=Position _Enter ', True)
print rs.SelectedObjects()

where the ID need to be changed to the one of an object in a chain in your model. The expected outcome is that all the objects that are adjacent to the one passed to the command should be selected. In V5 this is the case. In V6 the list returned by rs.SelectedObjects() is empty.

Am I missing something?

Thanks a lot
Alberto

@mikko, is this something you can help with?

@dale, this should work again in a near future build. It broke when I made SelChain work nested, but forgot to make the test ignore script runner commands.