|
@@ -27,7 +27,7 @@ namespace MafiaTelegramBot.Models
|
|
public static IReadOnlyList<Payment> Payments => _paymentsList.AsReadOnly();
|
|
public static IReadOnlyList<Payment> Payments => _paymentsList.AsReadOnly();
|
|
|
|
|
|
public static readonly List<long> UsersThatChangesNickname = new();
|
|
public static readonly List<long> UsersThatChangesNickname = new();
|
|
- public static readonly Dictionary<long, string[]> UsersThatCreatesRoom = new();
|
|
|
|
|
|
+ public static readonly Dictionary<long, string> UsersThatCreatesRoom = new();
|
|
public static readonly List<long> UserThatEntersPrivateCode = new();
|
|
public static readonly List<long> UserThatEntersPrivateCode = new();
|
|
|
|
|
|
public static TelegramBotClient Get()
|
|
public static TelegramBotClient Get()
|
|
@@ -65,11 +65,6 @@ namespace MafiaTelegramBot.Models
|
|
{
|
|
{
|
|
new ShowMyRolesQuery(),
|
|
new ShowMyRolesQuery(),
|
|
new ShopMenuQuery(),
|
|
new ShopMenuQuery(),
|
|
- new MakePrivateRoomQuery(),
|
|
|
|
- new MakePublicRoomQuery(),
|
|
|
|
- new ChooseGameTypeQuery(),
|
|
|
|
- new ChooseGameModeQuery(),
|
|
|
|
- new MakePublicRoomQuery(),
|
|
|
|
new SettingsProfileQuery(),
|
|
new SettingsProfileQuery(),
|
|
new ChangeNickNameQuery(),
|
|
new ChangeNickNameQuery(),
|
|
new SettingsRoomQuery(),
|
|
new SettingsRoomQuery(),
|
|
@@ -83,7 +78,10 @@ namespace MafiaTelegramBot.Models
|
|
new PlayersCountSettingsQuery(),
|
|
new PlayersCountSettingsQuery(),
|
|
new ApplyRolesChangeQuery(),
|
|
new ApplyRolesChangeQuery(),
|
|
new StartGameQuery(),
|
|
new StartGameQuery(),
|
|
- new ShowMyExtendedStatsQuery()
|
|
|
|
|
|
+ new ShowMyExtendedStatsQuery(),
|
|
|
|
+ new ChooseRoomViewQuery(),
|
|
|
|
+ new ChooseGameTypeQuery(),
|
|
|
|
+ new ChooseGameModeQuery(),
|
|
};
|
|
};
|
|
}
|
|
}
|
|
|
|
|