Elin Modding Docs Doc
Loading...
Searching...
No Matches
GlobalGoalExplore.cs
1
using
System;
2
using
System.Linq;
3
4
// Token: 0x0200022B RID: 555
5
public
class
GlobalGoalExplore
:
GlobalGoalVisitAndStay
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
}
EClass
Definition
EClass.cs:7
GlobalGoalExplore
Definition
GlobalGoalExplore.cs:6
GlobalGoalVisitAndStay
Definition
GlobalGoalVisitAndStay.cs:7
Spatial
Definition
Spatial.cs:9
Zone
Definition
Zone.cs:14
Elin
GlobalGoalExplore.cs
Generated by
1.12.0