TextClient: receive all items
By popular demand, this makes /received work again. Closes #887
This commit is contained in:
parent
ffe528467e
commit
c96acbfa23
|
@ -726,7 +726,7 @@ if __name__ == '__main__':
|
||||||
class TextContext(CommonContext):
|
class TextContext(CommonContext):
|
||||||
tags = {"AP", "IgnoreGame", "TextOnly"}
|
tags = {"AP", "IgnoreGame", "TextOnly"}
|
||||||
game = "" # empty matches any game since 0.3.2
|
game = "" # empty matches any game since 0.3.2
|
||||||
items_handling = 0 # don't receive any NetworkItems
|
items_handling = 0b111 # receive all items for /received
|
||||||
|
|
||||||
async def server_auth(self, password_requested: bool = False):
|
async def server_auth(self, password_requested: bool = False):
|
||||||
if password_requested and not self.password:
|
if password_requested and not self.password:
|
||||||
|
|
Loading…
Reference in New Issue