Added .shopreq - Shop items can now have a role requirement in order to purchase. Added .shopbuy alias for .buy

This commit is contained in:
Kwoth
2022-09-13 21:33:20 +02:00
parent d1a818542c
commit f23ffe0c67
16 changed files with 17490 additions and 3 deletions

View File

@@ -24,6 +24,7 @@ public class ShopEntry : DbEntity, IIndexed
//list
public HashSet<ShopEntryItem> Items { get; set; } = new();
public ulong? RoleRequirement { get; set; }
}
public class ShopEntryItem : DbEntity