Elin Modding Docs Doc
Loading...
Searching...
No Matches
GlobalGoalVisitTown.cs
1using System;
2
3// Token: 0x0200022A RID: 554
5{
6 // Token: 0x06000F9B RID: 3995 RVA: 0x00070078 File Offset: 0x0006E278
7 public override Zone GetDestZone()
8 {
9 foreach (Zone zone in EClass.world.region.ListTowns().Shuffle<Zone>())
10 {
11 if (this.owner.currentZone != zone)
12 {
13 return zone;
14 }
15 }
16 return base.GetDestZone();
17 }
18}
Definition Zone.cs:14