diff --git a/Fushigi/course/CourseActor.cs b/Fushigi/course/CourseActor.cs index 01127e0..a100d81 100644 --- a/Fushigi/course/CourseActor.cs +++ b/Fushigi/course/CourseActor.cs @@ -246,7 +246,7 @@ public static CourseActorType GetActorTypeFromGyaml(string gyaml) gyaml = gyaml.ToLower(); if (gyaml.EndsWith("tag")) return CourseActorType.Tag; - if (gyaml.StartsWith("area") || gyaml.EndsWith("area")) + if (gyaml.Contains("area")) return CourseActorType.Area; if (gyaml.StartsWith("block")) return CourseActorType.Block;