Remove limit on whispering to oneself.

Resolves #1416.
This commit is contained in:
Griatch 2017-09-03 10:31:45 +02:00
parent 059ece50d9
commit 44f01c48da
2 changed files with 6 additions and 8 deletions

View file

@ -448,10 +448,6 @@ class CmdWhisper(COMMAND_DEFAULT_CLASS):
if not receiver:
return
if caller == receiver:
caller.msg("You can't whisper to yourself.")
return
speech = self.rhs
# Call a hook to change the speech before whispering
speech = caller.at_before_say(speech, whisper=True, receiver=receiver)