Fix reporting bug when doing replay
This commit is contained in:
@ -2043,6 +2043,17 @@ namespace EduNetworkBuilder
|
||||
LoadNetworkFromNetwork(theNet);
|
||||
}
|
||||
}
|
||||
if(OurSettings.ReplayMode)
|
||||
{
|
||||
//clear out the replay actions for this network
|
||||
ActionCollection AC = OurSettings.GetUserActionCollection();
|
||||
if (AC != null)
|
||||
{
|
||||
NetworkAction NA = AC.GetCurrentNetAction();
|
||||
if (NA != null)
|
||||
NA.Actions.Clear();
|
||||
}
|
||||
}
|
||||
UpdateMenu();
|
||||
UpdateForm();
|
||||
}
|
||||
|
Reference in New Issue
Block a user