From e0f726422cde56bc08e3a30ac347f9a9b402f49b Mon Sep 17 00:00:00 2001 From: thyhellcat Date: Thu, 18 Jun 2020 19:28:50 +0200 Subject: [PATCH] Added help text. --- ygo/parsers/room_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ygo/parsers/room_parser.py b/ygo/parsers/room_parser.py index a8ca9bf..ac15b9a 100644 --- a/ygo/parsers/room_parser.py +++ b/ygo/parsers/room_parser.py @@ -59,7 +59,7 @@ def list(caller): if room.open: pl.notify(pl._("teams - show teams and associated players")) if room.duel_count == 0 and not room.started: - pl.notify(pl._("deck - select a deck to duel with")) + pl.notify(pl._("deck - select a deck to duel with (use deck -n to only list your own decks)")) pl.notify(pl._("move - move yourself into a team of your choice")) if room.duel_count > 0 and pl not in room.teams[0] and not room.started: pl.notify(pl._("exchange [ ] - exchange cards between main deck and side deck"))