Skip to content

FirstTimelineMentionedInWorld doesn't look for preprocessors. #25

@Zeldack974

Description

@Zeldack974

This causes preprocessor conditions to not works at all and probably other problems.

Here an example of a fix

for (int i = 0; i < lines.Count; i++)
{
    var line = lines[i];
    if (!string.IsNullOrEmpty(line) && line[0] == '{' && line.Contains('}'))
    {
        lines[i] = line.Substring(line.IndexOf("}") + 1);
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions