From 291fd6fa34080540a57524b619eb8523e283d441 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sat, 30 Sep 2017 14:18:37 +0200 Subject: [PATCH] Fix call at_say -> at_before_say. Resolves #1451. --- 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 e211d5b71a..ed74e2286d 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_say(caller, self.args) + speech = caller.location.at_before_say(caller, self.args) # preparing the speech with sdesc/speech parsing. speech = "/me says, \"{speech}\"".format(speech=speech) targets = self.caller.location.contents