Removed the lightfinder needs to be turned on.

This commit is contained in:
CakeAndBanana
2025-09-29 19:52:19 +02:00
parent f74cd01a32
commit dc1fdd4a3e

View File

@@ -94,17 +94,14 @@ internal class ContextMenu : IHostedService
if (!IsWorldValid(world))
return;
if (_configService.Current.BroadcastEnabled)
args.AddMenuItem(new MenuItem
{
args.AddMenuItem(new MenuItem
{
Name = "Send Pair Request",
PrefixChar = 'L',
UseDefaultPrefix = false,
PrefixColor = 708,
OnClicked = async _ => await HandleSelection(args)
});
}
Name = "Send Pair Request",
PrefixChar = 'L',
UseDefaultPrefix = false,
PrefixColor = 708,
OnClicked = async _ => await HandleSelection(args)
});
}
private async Task HandleSelection(IMenuArgs args)