[KnifeBan] Change function return type to void.

This commit is contained in:
zaCade 2025-07-06 09:12:48 +02:00
parent 8c72b1cae1
commit 207645e542

View File

@ -552,7 +552,7 @@ public void OpenKnifebanlistMenu(int client)
menu.Display(client, MENU_TIME_FOREVER); menu.Display(client, MENU_TIME_FOREVER);
} }
public int MenuHandler_MainMenu(Menu menu, MenuAction action, int client, int selection) public void MenuHandler_MainMenu(Menu menu, MenuAction action, int client, int selection)
{ {
switch(action) switch(action)
{ {
@ -644,7 +644,7 @@ public void OpenKnifebanlistOfTheClient(int client, char sBuffer[32])
menuclient.Display(client, MENU_TIME_FOREVER); menuclient.Display(client, MENU_TIME_FOREVER);
} }
public int MenuHandler_ClientMenu(Menu menuclient, MenuAction action, int client, int selection) public void MenuHandler_ClientMenu(Menu menuclient, MenuAction action, int client, int selection)
{ {
switch(action) switch(action)
{ {