mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Fix monitor inputfunc as per #3312, still remain issue with monitoring
This commit is contained in:
parent
1dd73839c2
commit
d353d87628
1 changed files with 1 additions and 1 deletions
|
|
@ -444,7 +444,7 @@ def monitor(session, *args, **kwargs):
|
|||
from evennia.scripts.monitorhandler import MONITOR_HANDLER
|
||||
|
||||
name = kwargs.get("name", None)
|
||||
outputfunc_name = kwargs("outputfunc_name", "monitor")
|
||||
outputfunc_name = kwargs.get("outputfunc_name", "monitor")
|
||||
category = kwargs.get("category", None)
|
||||
if name and name in _monitorable and session.puppet:
|
||||
field_name = _monitorable[name]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue