Comment 1 for bug 1929879

Revision history for this message
r.roeterdink (r-roeterdink) wrote :

For the new processing of speedpost, the method AddWorldInfo was changed in order to separate speedposts from signals.
However, the check on signals was set to "If (signal.isSignal)". Therefor signals of type SPEED were no longer properly processed as this flag is false for this type of signal.
There must be an additional test on signal.isSpeedSignal :

If (signal.isSignal || signal.isSpeedSignal)