This mod fixes a bug introduced in U237.2 (15 Jun 2023), where controller users would be unable to paste lobby invite codes.
(It also fixes a visual issue where the loading icon spins faster and faster every time you open the Social Hub.)
Install to the mods folder.
Code:
functionSocialHubInviteTab:special_btn_pressed(button)-- In U237.2, the below conditional check was added but erroneously inverted, causing the "respec" button to only be available on mouse+keyboard, instead of only available when NOT on mouse+keyboard; here, it has been fixed to behave as (likely) intendedif managers.menu:is_pc_controller() thenreturnendif button == Idstring("menu_respec_tree") thenself._searchbox:clear_text()
self._searchbox:enter_text(nil, Application:get_clipboard())
self:searchbox_disconnect_callback(Application:get_clipboard())
endend