mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-15 07:43:20 +08:00
Fix teleport issue (#2662)
This commit is contained in:
@@ -133,7 +133,8 @@ public class SeaOfBygoneErasMap : SceneBaseMap
|
|||||||
{
|
{
|
||||||
return default;
|
return default;
|
||||||
}
|
}
|
||||||
teleportPoints = teleportPoints.OrderBy(i => i.X).ThenBy(i => i.Y).ToList();
|
teleportPoints = teleportPoints.Select(i => new Point(i.X + 12, i.Y + 12)).
|
||||||
|
OrderBy(i => i.X).ThenBy(i => i.Y).ToList();
|
||||||
/*
|
/*
|
||||||
foreach (var p in teleportPoints) {
|
foreach (var p in teleportPoints) {
|
||||||
Logger.LogInformation("Teleport point: {a}", p);
|
Logger.LogInformation("Teleport point: {a}", p);
|
||||||
|
|||||||
Reference in New Issue
Block a user