mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Merge pull request #1464 from amfl/fix-at-before-say
RPsystem contrib: Pass at_before_say the corrent number of arguments
This commit is contained in:
commit
5ad10d7055
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_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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue