mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 15:26:30 +01:00
Last commit introduced a silly typo. Fixed.
This commit is contained in:
parent
57de91a234
commit
a4adc035f2
1 changed files with 1 additions and 1 deletions
|
|
@ -240,7 +240,7 @@ class ServerSession(Session):
|
|||
|
||||
for funcname, argtuple in data.items():
|
||||
# loop through the data, calling available functions.
|
||||
rc func = OOB_FUNC_MODULE.__dict__.get(funcname, None)
|
||||
func = OOB_FUNC_MODULE.__dict__.get(funcname, None)
|
||||
if func:
|
||||
try:
|
||||
outdata[funcname] = func(entity, *argtuple[0], **argtuple[1])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue