diff --git a/vMenu/FunctionsController.cs b/vMenu/FunctionsController.cs index 4a7e3f9e..7d5ebb00 100644 --- a/vMenu/FunctionsController.cs +++ b/vMenu/FunctionsController.cs @@ -2343,9 +2343,9 @@ private async Task PlayerOverheadNamesControl() bool enabled = MainMenu.MiscSettingsMenu.MiscShowOverheadNames && IsAllowed(Permission.MSOverheadNames); if (!enabled) { - for (var i = 0; i < 255; i++) + foreach (KeyValuePair gamerTag in gamerTags) { - RemoveMpGamerTag(i); + RemoveMpGamerTag(gamerTag.Value); } } else