Compare commits

..

No commits in common. "8c72b1cae1f9d0b33462654eb93e09e572ee9e0e" and "09aa1218ac451d6a69b6a2c73b0c77596b2c471b" have entirely different histories.

View File

@ -373,8 +373,6 @@ public Action Command_Rainbow(int client, int args)
Frequency = StringToFloat(sArg); Frequency = StringToFloat(sArg);
if(Frequency > 10.0) if(Frequency > 10.0)
Frequency = 10.0; Frequency = 10.0;
else if(Frequency < 0.01)
Frequency = 0.01;
} }
if(!Frequency || (args < 1 && g_aRainbowFrequency[client])) if(!Frequency || (args < 1 && g_aRainbowFrequency[client]))
@ -403,7 +401,7 @@ void DisplayGlowColorMenu(int client)
g_GlowColorsMenu.Display(client, MENU_TIME_FOREVER); g_GlowColorsMenu.Display(client, MENU_TIME_FOREVER);
} }
public void MenuHandler_GlowColorsMenu(Menu menu, MenuAction action, int param1, int param2) public int MenuHandler_GlowColorsMenu(Menu menu, MenuAction action, int param1, int param2)
{ {
switch(action) switch(action)
{ {