diff --git a/MosswartMassacre/PluginCore.cs b/MosswartMassacre/PluginCore.cs index d607624..6c190ed 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 12 meters of the player + // Only report portals within 60 meters of the player var portalPos = new Coordinates(decalCoords.EastWest, decalCoords.NorthSouth); var playerPos = Coordinates.Me; double dist = playerPos.DistanceToFlat(portalPos); - if (dist > 12.0) return; + if (dist > 60.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 bd84ecb..93cf9c5 100644 Binary files a/MosswartMassacre/bin/Release/MosswartMassacre.dll and b/MosswartMassacre/bin/Release/MosswartMassacre.dll differ