From 75ad8d843db7fba685f7c62fed00b6666e63faaa Mon Sep 17 00:00:00 2001 From: amfl Date: Tue, 3 Oct 2017 19:38:25 +1300 Subject: [PATCH] Pass at_before_say the corrent number of arguments --- evennia/contrib/rpsystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/contrib/rpsystem.py b/evennia/contrib/rpsystem.py index ed74e2286d..a396a18abc 100644 --- a/evennia/contrib/rpsystem.py +++ b/evennia/contrib/rpsystem.py @@ -858,7 +858,7 @@ class CmdSay(RPCommand): # replaces standard say return # calling the speech hook on the location - speech = caller.location.at_before_say(caller, self.args) + speech = caller.location.at_before_say(self.args) # preparing the speech with sdesc/speech parsing. speech = "/me says, \"{speech}\"".format(speech=speech) targets = self.caller.location.contents