mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
[store] fix kitties purchasable IDs
This commit is contained in:
@@ -11,4 +11,4 @@ public class GayKittiesService : AbstractKittiesService
|
||||
}
|
||||
|
||||
protected override string VideoType => "gay";
|
||||
public override StoreItem StoreItem { get; } = new("kitties", "Прон (не геи)", 40, 110);}
|
||||
public override StoreItem StoreItem { get; } = new("kitties_gay", "Прон (не геи)", 40, 110);}
|
||||
@@ -10,7 +10,7 @@ namespace West.TelegramBot.ContentStore.Service;
|
||||
public class StraightKittiesService : AbstractKittiesService
|
||||
{
|
||||
protected override string VideoType => "straight";
|
||||
public override StoreItem StoreItem { get; } = new("kitties", "Прон", 40, 100);
|
||||
public override StoreItem StoreItem { get; } = new("kitties_straight", "Прон", 40, 100);
|
||||
|
||||
public StraightKittiesService(IConfiguration configuration, CoreContext db) : base(configuration, db)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user