From 601561fc94154ef1e0d055646a65189e32686cfa Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Sat, 17 Jun 2017 18:05:40 -0500 Subject: [PATCH] Move when the response is lowered --- cogs/playlist.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cogs/playlist.py b/cogs/playlist.py index fdabb7e..5c69495 100644 --- a/cogs/playlist.py +++ b/cogs/playlist.py @@ -271,11 +271,12 @@ class Playlist: # We want to loop this in order to continue editing, till the user is done while True: response = await self.get_response(ctx, q1) - response = response.lower().strip() if not response: break + response = response.lower().strip() + if 'add' in response: # Ask the user what song to add, get the response, add it question = "What is the song you would like to add to {}?".format(playlist)