Spawning mostly undergroundSolved

How can i stop the bases spawning underground.

wait for the next update

or replace

var list = GetListedOptions(profile.Value.Options.PasteOptions);

with

            List<PasteOption> options = profile.Value.Options.PasteOptions;

            foreach (var kvp in profile.Value.Options.AdditionalBases)
            {
                if (kvp.Key.Equals(profile.Key, StringComparison.OrdinalIgnoreCase))
                {
                    options = kvp.Value;
                    break;
                }
            }

            var list = GetListedOptions(options);​

Thank you.

Nivex, this actualy made a nightmare base even worse?

nivex

wait for the next update

or replace

var list = GetListedOptions(profile.Value.Options.PasteOptions);

with

            List<PasteOption> options = profile.Value.Options.PasteOptions;

            foreach (var kvp in profile.Value.Options.AdditionalBases)
            {
                if (kvp.Key.Equals(profile.Key, StringComparison.OrdinalIgnoreCase))
                {
                    options = kvp.Value;
                    break;
                }
            }

            var list = GetListedOptions(options);​

Nivex, can you confirm with file this is sitting in thanks (Im not having any luck where to find this to make the suggested edit

it's in the cs file

Where exactly in the .cs file is this? I'm trying to search for some of these words and can't find it exactly. Like what line in the file?

Its 1 line of code from the 1st snippet that you are replacing with the 2nd snippet. If you cant figure it out then its best to leave it alone

Locked automatically