mirror of
https://github.com/evennia/evennia.git
synced 2026-03-26 01:36:32 +01:00
Fix call at_say -> at_before_say. Resolves #1451.
This commit is contained in:
parent
da58d827cf
commit
291fd6fa34
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue