public IterationResult Send(GameEvent Event, bool UpdateOfEnvironment = true) { if (!Enabled) { return(new IterationResult(null)); } if (UpdateOfEnvironment) { Event.Add(GetAllEnvironmentalChanges()); } return(evalService_.Send(Event)); }