Skip to content

Commit

Permalink
Ping message change Med to Avg
Browse files Browse the repository at this point in the history
Meant to put Avg in the first place
  • Loading branch information
123DMWM committed Nov 20, 2017
1 parent 1b58aea commit 0f1f74e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fCraft/Commands/InfoCommands.cs
Expand Up @@ -1760,7 +1760,7 @@ static void EmotesHandler(Player player, CommandReader cmd)
}

if (target != null && target.Ping.AveragePingMilliseconds() != 0) {
player.Message("Ping: (&ALo&S:&7Med&S:&CHi&S)ms");
player.Message("Ping: (&ALo&S:&7Avg&S:&CHi&S)ms");
player.Message(" " + target.Ping.Format());
}
}
Expand Down Expand Up @@ -2085,7 +2085,7 @@ static void clpHandler(Player player, CommandReader cmd)
}

Player[] list = candidates.Skip(fixOffset(offset, candidates.Count())).Take(10).ToArray();
player.Message("Ping/Latency List: (&ALo&S:&7Med&S:&CHi&S)ms");
player.Message("Ping/Latency List: (&ALo&S:&Avg&S:&CHi&S)ms");
for (int i = 0; i < list.Length; i++) {
player.Message(" {1}&S - {0}", list[i].Info.ClassyName, list[i].Ping.Format());
}
Expand Down

0 comments on commit 0f1f74e

Please sign in to comment.