Games commands should properly show up now
This commit is contained in:
parent
0a548523ab
commit
74eac23ed3
@ -10,7 +10,7 @@ using System.Threading.Tasks;
|
|||||||
// because i don't want to waste my time on this cancerous command
|
// because i don't want to waste my time on this cancerous command
|
||||||
namespace NadekoBot.Modules.Games
|
namespace NadekoBot.Modules.Games
|
||||||
{
|
{
|
||||||
public partial class GamesModule
|
public partial class Games
|
||||||
{
|
{
|
||||||
[LocalizedCommand, LocalizedDescription, LocalizedSummary, LocalizedAlias]
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary, LocalizedAlias]
|
||||||
[RequireContext(ContextType.Guild)]
|
[RequireContext(ContextType.Guild)]
|
||||||
|
@ -26,6 +26,7 @@ namespace NadekoBot.Modules.Games
|
|||||||
/// Check out GDL (its a growing gamedev community):
|
/// Check out GDL (its a growing gamedev community):
|
||||||
/// https://discord.gg/0TYNJfCU4De7YIk8
|
/// https://discord.gg/0TYNJfCU4De7YIk8
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[Group]
|
||||||
public class PlantPick
|
public class PlantPick
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ using System.Threading.Tasks;
|
|||||||
|
|
||||||
namespace NadekoBot.Modules.Games
|
namespace NadekoBot.Modules.Games
|
||||||
{
|
{
|
||||||
public partial class GamesModule
|
public partial class Games
|
||||||
{
|
{
|
||||||
public static ConcurrentDictionary<IGuild, Poll> ActivePolls = new ConcurrentDictionary<IGuild, Poll>();
|
public static ConcurrentDictionary<IGuild, Poll> ActivePolls = new ConcurrentDictionary<IGuild, Poll>();
|
||||||
|
|
||||||
|
@ -14,6 +14,8 @@ using System.Threading.Tasks;
|
|||||||
|
|
||||||
namespace NadekoBot.Modules.Games
|
namespace NadekoBot.Modules.Games
|
||||||
{
|
{
|
||||||
|
public partial class Games
|
||||||
|
{
|
||||||
public class TypingGame
|
public class TypingGame
|
||||||
{
|
{
|
||||||
public const float WORD_VALUE = 4.5f;
|
public const float WORD_VALUE = 4.5f;
|
||||||
@ -191,4 +193,5 @@ namespace NadekoBot.Modules.Games
|
|||||||
// await channel.SendMessageAsync("Added new article for typing game.").ConfigureAwait(false);
|
// await channel.SendMessageAsync("Added new article for typing game.").ConfigureAwait(false);
|
||||||
//}
|
//}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
@ -10,7 +10,7 @@ using System.Threading.Tasks;
|
|||||||
//todo Rewrite? Fix trivia not stopping bug
|
//todo Rewrite? Fix trivia not stopping bug
|
||||||
namespace NadekoBot.Modules.Games
|
namespace NadekoBot.Modules.Games
|
||||||
{
|
{
|
||||||
public partial class GamesModule
|
public partial class Games
|
||||||
{
|
{
|
||||||
[Group]
|
[Group]
|
||||||
public class TriviaCommands
|
public class TriviaCommands
|
||||||
|
Loading…
Reference in New Issue
Block a user