Zulg I'm on Carbon, makes no difference for what it's worth. The issue is in the core rustserver. I'm sure FP will patch it tomorrow because everyone is complaining about it.
you can try this, it was in the carbon discord
make file named NoPingEstimation.cs
paste this into it
using System;
using System.Threading.Tasks;
using HarmonyLib;
using Facepunch.Ping;
namespace Carbon.Plugins;
// Reference: Facepunch.Ping
[Info("NoPingEstimation", "Rdeathul", "1.0.0")]
public class NoPingEstimation : CarbonPlugin
{
public override bool AutoPatch => true;
[HarmonyPatch(typeof(PingEstimater), "UpdateClosestRegion")]
public class PingEstimater_UpdateClosestRegion
{
public static bool Prefix(ref Task __result)
{
__result = Task.CompletedTask;
return false;
}
}
}
do whatever carbon needs to load it, i assume a load command. i dont use carbon