EstherTMB

Results 1 comments of EstherTMB

**!undo command** Add in to bot.py ``` async def cmd_undo(self, player, author): player.playlist.remove_last() return Response(':put_litter_in_its_place: last track removed', delete_after=10) ``` and to the playlist.py ``` def remove_last(self): self.entries.pop() ```