Switch the middle button to another button on the keyboardNot An Issue

the center wheel is used to divide the resource stacks and I would like to move it to the º or P key how can I do it?

void OnPlayerInput(BasePlayer player, InputState state)
        {
            if (state.WasJustPressed(BUTTON.FIRE_THIRD))
            {
                if (hasAuth(player))
                {
                    if (!buildToggled.ContainsKey(player.userID))
                    {
                        if (!playerBuild.ContainsKey(player.userID))
                        {
                            playerBuild.Add(player.userID, new PlayerBuild(player));
                        }
                        BuildMenu_Toggle(player);
                        buildToggled.Add(player.userID, true);
                    }
                    else
                    {
                        BuildMenu_UnToggle(player);
                        buildToggled.Remove(player.userID);
                    }
                }
            }​

Look to the documentation, feel free to bind another button

Locked automatically