Exemplo n.º 1
0
 public static void adjustWarps(string name)
 {
     if (Game1.getLocationFromName(name) is GameLocation target)
     {
         foreach (var location in PyUtils.getWarpLocations(target))
         {
             PyUtils.adjustInboundWarps(location, target);
         }
     }
     else
     {
         Monitor.Log("Could not find Location: " + name);
     }
 }