diff --git a/mapchooser_extended/scripting/mapchooser_extended_avg.sp b/mapchooser_extended/scripting/mapchooser_extended_avg.sp index 79c39d13..33e65894 100755 --- a/mapchooser_extended/scripting/mapchooser_extended_avg.sp +++ b/mapchooser_extended/scripting/mapchooser_extended_avg.sp @@ -1070,15 +1070,10 @@ public Handle get_most_nominated_maps(bool create_next_vote) sm.GetValue(map_iteration, nominate_count_for_particular_map); //if i is 0 its admin nominated map that must come into the vote. - //if strequal the map was nominated by a leader and must be forced on the vote. if (!i) { nominate_count_for_particular_map = 1999; } - else if(Leader_Is(i)) - { - nominate_count_for_particular_map = 999; - } else { int nominate_worth = RoundToFloor(GetPlayerWorthRTV_boost_(i)); diff --git a/mapchooser_extended/scripting/nominations_extended_avg.sp b/mapchooser_extended/scripting/nominations_extended_avg.sp index c0100023..49483ac8 100755 --- a/mapchooser_extended/scripting/nominations_extended_avg.sp +++ b/mapchooser_extended/scripting/nominations_extended_avg.sp @@ -942,10 +942,6 @@ bool PopulateNominateListMenu(Menu menu, int client, const char[] filter = "") { nominate_count_for_particular_map = 1999; } - else if(Leader_Is(owner)) - { - nominate_count_for_particular_map = 999; - } else { int nominate_worth = RoundToFloor(GetPlayerWorthRTV_boost_(owner)); @@ -991,10 +987,6 @@ bool PopulateNominateListMenu(Menu menu, int client, const char[] filter = "") if(!owner) Format(display, sizeof(display), "%s (Admin)", display); - else if (Leader_Is(owner)) - { - Format(display, sizeof(display), "%s (Mapleader)", display); - } else Format(display, sizeof(display), "%s (%i %s)", display, nominate_count_for_particular_map, spelling);