new public bool TryReloadConfiguratorState()
        {
            BuildingModifierState state;

            if (!JsonLoader.TryLoadConfiguration(this.StateFilePath, out state))
            {
                return(false);
            }

            State = state;
            return(true);
        }