Bug Fixes with Music playing

This commit is contained in:
Alex
2019-12-18 03:07:52 -05:00
parent a63afd3a2b
commit 46cf6f8c97
4 changed files with 18 additions and 10 deletions
-1
View File
@@ -27,7 +27,6 @@ public class CommandMusicMain extends Command
public void onRun(KittyGuild guild, KittyChannel channel, KittyUser user, UserInput input, Response res)
{
SubCommandFormattable scf = framework.run(guild, channel, user, input);
System.out.println("SCF: " + scf.resString);
scf.Call(res);
}
}
+1 -1
View File
@@ -35,4 +35,4 @@ public class SubCommandPlaylist extends SubCommand
return new SubCommandFormattable(stringPlaylist);
}
}
}
+1 -2
View File
@@ -17,8 +17,7 @@ public class SubCommandStop extends SubCommand
@Override
public SubCommandFormattable OnRun(KittyGuild guild, KittyChannel channel, KittyUser user, UserInput input)
{
return new SubCommandFormattable(guild.audio.stopPlayer(guild.audio.player));
}
}
}