Buttons remain on screen when used with Bank pluginFixed
If used with the bank plugin - https://umod.org/plugins/bank the buttons remain on the player's screen when the bank container is closed.
In response to alexjfox ():
If used with the bank plugin - https://umod.org/plugins/bank the buttons remain on the player's scre...
I will check this, thanks for reporting.

Was also annoyed by that, adding this method fixed it for me.

private void OnPlayerLootEnd(PlayerLoot inventory)
{
BasePlayer player = inventory.GetComponent<BasePlayer>();
CuiHelper.DestroyUi(player, IdSortButton);
CuiHelper.DestroyUi(player, IdOrderButton);
}
Added the above suggestion, thanks.
Locked automatically