Elin Modding Docs Doc
Loading...
Searching...
No Matches
GlobalGoalExplore.cs
1using System;
2using System.Linq;
3
4// Token: 0x0200022B RID: 555
6{
7 // Token: 0x06000F9D RID: 3997 RVA: 0x000700F0 File Offset: 0x0006E2F0
8 public override Zone GetDestZone()
9 {
10 foreach (Spatial spatial in (from a in EClass.world.region.children
11 where (a as Zone).IsExplorable
12 select a).ToList<Spatial>().Shuffle<Spatial>())
13 {
14 if (this.owner.currentZone != spatial)
15 {
16 return spatial as Zone;
17 }
18 }
19 return base.GetDestZone();
20 }
21}
Definition Zone.cs:14