diff --git a/MosswartMassacre/PluginCore.cs b/MosswartMassacre/PluginCore.cs index 6c190ed..f8a132f 100644 --- a/MosswartMassacre/PluginCore.cs +++ b/MosswartMassacre/PluginCore.cs @@ -812,11 +812,11 @@ namespace MosswartMassacre var decalCoords = portal.Coordinates(); if (decalCoords == null) return; - // Only report portals within 60 meters of the player + // Only report portals within 240 meters of the player var portalPos = new Coordinates(decalCoords.EastWest, decalCoords.NorthSouth); var playerPos = Coordinates.Me; double dist = playerPos.DistanceToFlat(portalPos); - if (dist > 60.0) return; + if (dist > 240.0) return; const string fmt = "F7"; string ns = decalCoords.NorthSouth.ToString(fmt, CultureInfo.InvariantCulture); diff --git a/MosswartMassacre/bin/Release/MosswartMassacre.dll b/MosswartMassacre/bin/Release/MosswartMassacre.dll index 93cf9c5..1b478ff 100644 Binary files a/MosswartMassacre/bin/Release/MosswartMassacre.dll and b/MosswartMassacre/bin/Release/MosswartMassacre.dll differ