View Single Post
Aqua
Junior Member
Join Date: Aug 2018
Old 08-22-2018 , 07:12   Re: Polymorph: Mod Manager
Reply With Quote #935

Quote:
Originally Posted by fysiks View Post
To remove an item from the menu entirely, you have to remove the bit for that key in the variable mkeys. In this case, I set this bit on line 497. I.e.

Code:
	new menu[512], a = 0, mkeys = (1<<SELECTMODS + 1) // The "None" key


Code:
	new menu[512], a = 0, mkeys = 0
This eliminated all my problems. I also did this operation to vote for the map. Thank you!
Aqua is offline