diff --git a/BUILDS/net6.0/MusicCommands.dll b/BUILDS/net6.0/MusicCommands.dll
index f7f0d7f..f6ecafa 100644
Binary files a/BUILDS/net6.0/MusicCommands.dll and b/BUILDS/net6.0/MusicCommands.dll differ
diff --git a/MusicCommands/MusicPlayer.cs b/MusicCommands/MusicPlayer.cs
index ae58026..4f8b8dc 100644
--- a/MusicCommands/MusicPlayer.cs
+++ b/MusicCommands/MusicPlayer.cs
@@ -37,6 +37,15 @@ namespace MusicCommands
public async Task StartSendAudioFromLink(string URL)
{
+
+ /* using (HttpClient client = new HttpClient())
+ using (HttpResponseMessage response = await client.GetAsync(URL))
+ using (var content = response.Content)
+ {
+ await (await content.ReadAsStreamAsync()).CopyToAsync(outputStream);
+ }*/
+
+
Stream ms = new MemoryStream();
int bsize = 512;
new Thread(async delegate (object o)
diff --git a/MusicCommands/lplay.cs b/MusicCommands/lplay.cs
index dcaafde..ed006a7 100644
--- a/MusicCommands/lplay.cs
+++ b/MusicCommands/lplay.cs
@@ -5,7 +5,6 @@ using Discord.WebSocket;
using Discord;
using PluginManager.Interfaces;
-using PluginManager.Others;
namespace MusicCommands
{
@@ -19,7 +18,7 @@ namespace MusicCommands
public bool canUseDM => false;
- public bool canUseServer => true;
+ public bool canUseServer => false;
public bool requireAdmin => false;
diff --git a/MyCommandsLibrary/Class1.cs b/MyCommandsLibrary/Class1.cs
new file mode 100644
index 0000000..2c93427
--- /dev/null
+++ b/MyCommandsLibrary/Class1.cs
@@ -0,0 +1,7 @@
+namespace MyCommandsLibrary
+{
+ public class Class1
+ {
+
+ }
+}
\ No newline at end of file
diff --git a/MyCommandsLibrary/MyCommandsLibrary.csproj b/MyCommandsLibrary/MyCommandsLibrary.csproj
new file mode 100644
index 0000000..132c02c
--- /dev/null
+++ b/MyCommandsLibrary/MyCommandsLibrary.csproj
@@ -0,0 +1,9 @@
+
+
+
+ net6.0
+ enable
+ enable
+
+
+
diff --git a/PluginManager/Others/Exceptions/APIException.cs b/PluginManager/Others/Exceptions/APIException.cs
index 881de94..de04a8f 100644
--- a/PluginManager/Others/Exceptions/APIException.cs
+++ b/PluginManager/Others/Exceptions/APIException.cs
@@ -2,7 +2,11 @@ using System;
namespace PluginManager.Others.Exceptions
{
+ ///
+ /// Custom Exception for PluginManager
+ ///
[Serializable]
+
public class APIException : Exception
{
///
diff --git a/PluginManager/Others/Functions.cs b/PluginManager/Others/Functions.cs
index 2a09b70..7c5de71 100644
--- a/PluginManager/Others/Functions.cs
+++ b/PluginManager/Others/Functions.cs
@@ -10,6 +10,9 @@ using System.Threading;
namespace PluginManager.Others
{
+ ///
+ /// A special class with functions
+ ///
public static class Functions
{
///