added CleanFountain function
This commit is contained in:
@@ -120,6 +120,20 @@ namespace DevourClient.Hacks
|
||||
goat_behavior.EnableBehavior();
|
||||
}
|
||||
|
||||
public static void CleanFountain()
|
||||
{
|
||||
try
|
||||
{
|
||||
GameObject[] fountains = GameObject.FindGameObjectsWithTag("InnFountain");
|
||||
|
||||
for (int i = 0; i < fountains.Length; i++)
|
||||
{
|
||||
fountains[i].GetComponent<InnFountainController>().Clean();
|
||||
}
|
||||
}
|
||||
catch { return; }
|
||||
}
|
||||
|
||||
public static void AutoRespawn()
|
||||
{
|
||||
NolanBehaviour nb = Player.GetPlayer();
|
||||
|
||||
Reference in New Issue
Block a user