Config or permission for /shop in building blockSuggestion
[ChatCommand("shop")]
private void cmdShop(BasePlayer player, string command, string[] args)
{
if(!Shops.ContainsKey("chat"))
{
SendReply(player, MessageErrorNPCRange);
return;
}
if (!player.CanBuild())
{
SendReply(player, MessageErrorBuildingBlocked);
return;
}

Can we get a permission or config for option to allow /shop in building blocked areas? I can edit this for myself but seems like would be reasonable to include in plugin. Cheers.
In response to Findles ():
[ChatCommand("shop")]
private void cmdShop(BasePlayer player, string command, string[] args)
Of-course.
I'll work on this when I can.
I'll release a small micro-patch for ya sometime soon.
In response to Findles ():
[ChatCommand("shop")]
private void cmdShop(BasePlayer player, string command, string[] args)
And it's officially done, anything else?