From 222d2f2fba593b266477a9d4078581332fa9e910 Mon Sep 17 00:00:00 2001 From: Sakimori Date: Sun, 3 Jan 2021 16:29:56 -0500 Subject: [PATCH] fixed some inconsestencies with new commands --- the_prestige.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/the_prestige.py b/the_prestige.py index 68578bc..96d2002 100644 --- a/the_prestige.py +++ b/the_prestige.py @@ -323,8 +323,8 @@ class SwapPlayerCommand(Command): await msg.channel.send("Three lines, remember? Command, then team, then name.") class MovePlayerCommand(Command): - name = "move" - template = """m;move + name = "moveplayer" + template = """m;moveplayer [team name] [player name] [new lineup/rotation position number] (indexed with 1 being the top)""" @@ -386,7 +386,7 @@ class AddPlayerCommand(Command): except IndexError: await msg.channel.send("Three lines, remember? Command, then team, then name.") -class DeletePlayerCommand(Command): +class RemovePlayerCommand(Command): name = "removeplayer" template = """m;removeplayer [team name] @@ -482,7 +482,7 @@ commands = [ SwapPlayerCommand(), MovePlayerCommand(), AddPlayerCommand(), - DeletePlayerCommand(), + RemovePlayerCommand(), DeleteTeamCommand(), ShowTeamCommand(), ShowAllTeamsCommand(),