Add GMCP Client.GUI inputfunc to avoid issues with Mudlet
This commit is contained in:
parent
419f96e3de
commit
9c210b3a50
1 changed files with 12 additions and 3 deletions
|
|
@ -610,9 +610,18 @@ def msdp_send(session, *args, **kwargs):
|
||||||
# client specific
|
# client specific
|
||||||
|
|
||||||
|
|
||||||
def external_discord_hello(session, *args, **kwargs):
|
def _not_implemented(session, *args, **kwargs):
|
||||||
"""
|
"""
|
||||||
Sent by Mudlet as a greeting; added here to avoid
|
Dummy used to swallow missing-inputfunc errors for
|
||||||
logging a missing inputfunc for it.
|
common clients.
|
||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
# GMCP External.Discord.Hello is sent by Mudlet as a greeting
|
||||||
|
# (see https://wiki.mudlet.org/w/Manual:Technical_Manual)
|
||||||
|
external_discord_hello = _not_implemented
|
||||||
|
|
||||||
|
|
||||||
|
# GMCP Client.Gui is sent by Mudlet for gui setup.
|
||||||
|
client_gui = _not_implemented
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue