CommonClient: inherit Context tags (#2283)

This commit is contained in:
Fabian Dill 2023-10-11 19:21:02 +02:00 committed by GitHub
parent e1ee08a599
commit 1ef3bc78dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -882,7 +882,7 @@ def get_base_parser(description: typing.Optional[str] = None):
def run_as_textclient(): def run_as_textclient():
class TextContext(CommonContext): class TextContext(CommonContext):
# Text Mode to use !hint and such with games that have no text entry # Text Mode to use !hint and such with games that have no text entry
tags = {"AP", "TextOnly"} tags = CommonContext.tags | {"TextOnly"}
game = "" # empty matches any game since 0.3.2 game = "" # empty matches any game since 0.3.2
items_handling = 0b111 # receive all items for /received items_handling = 0b111 # receive all items for /received
want_slot_data = False # Can't use game specific slot_data want_slot_data = False # Can't use game specific slot_data