The problem occurs when editing a scene. (## = minutes)
When you have a scene like this:
if (time = 00:##)
then
Do something A
Do something B
Do something C
If you edit the scene on iHost like this:
if (time = 00:##)
then
Do something A
Do something B (delete this condition)
Do something C
Once saved, the result should be:
if (time = 00:##)
then
Do something A
Do something C
But, if you check back, the time will also be modified by:
if (time = 00:##) will ALSO be replaced by the editing time, without notice
then
Do something A
Do something C