compiles and runs
This commit is contained in:
		@@ -28,7 +28,7 @@ namespace NadekoBot.Modules.Games
 | 
				
			|||||||
            [RequireContext(ContextType.Guild)]
 | 
					            [RequireContext(ContextType.Guild)]
 | 
				
			||||||
            public async Task Acro(int time = 60)
 | 
					            public async Task Acro(int time = 60)
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
                var channel = (ITextChannel)imsg.Channel;
 | 
					                var channel = (ITextChannel)Context.Channel;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                var game = new AcrophobiaGame(channel, time);
 | 
					                var game = new AcrophobiaGame(channel, time);
 | 
				
			||||||
                if (AcrophobiaGames.TryAdd(channel.Id, game))
 | 
					                if (AcrophobiaGames.TryAdd(channel.Id, game))
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -552,7 +552,7 @@ namespace NadekoBot.Modules.Searches
 | 
				
			|||||||
        [NadekoCommand, Usage, Description, Aliases]
 | 
					        [NadekoCommand, Usage, Description, Aliases]
 | 
				
			||||||
        [RequireContext(ContextType.Guild)]
 | 
					        [RequireContext(ContextType.Guild)]
 | 
				
			||||||
        public Task Safebooru([Remainder] string tag = null)
 | 
					        public Task Safebooru([Remainder] string tag = null)
 | 
				
			||||||
            => InternalDapiCommand(umsg, tag, DapiSearchType.Safebooru);
 | 
					            => InternalDapiCommand(Context.Message, tag, DapiSearchType.Safebooru);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        [NadekoCommand, Usage, Description, Aliases]
 | 
					        [NadekoCommand, Usage, Description, Aliases]
 | 
				
			||||||
        public async Task Wiki([Remainder] string query = null)
 | 
					        public async Task Wiki([Remainder] string query = null)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -36,7 +36,7 @@ namespace NadekoBot.Modules.Utility
 | 
				
			|||||||
                .WithAuthor(eab => eab.WithIconUrl("https://togethertube.com/assets/img/favicons/favicon-32x32.png")
 | 
					                .WithAuthor(eab => eab.WithIconUrl("https://togethertube.com/assets/img/favicons/favicon-32x32.png")
 | 
				
			||||||
                .WithName("Together Tube")
 | 
					                .WithName("Together Tube")
 | 
				
			||||||
                .WithUrl("https://togethertube.com/"))
 | 
					                .WithUrl("https://togethertube.com/"))
 | 
				
			||||||
                .WithDescription($"{imsg.Author.Mention} Here is your room link:\n{target}"));
 | 
					                .WithDescription($"{Context.User.Mention} Here is your room link:\n{target}"));
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        [NadekoCommand, Usage, Description, Aliases]
 | 
					        [NadekoCommand, Usage, Description, Aliases]
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user