ambience: use all words from content as target
This commit is contained in:
parent
2af36ef429
commit
982566ee00
|
@ -38,7 +38,7 @@ class AmbiencePlugin(Plugin):
|
|||
contents = self.command.content.split()
|
||||
self.bot.log_d(f"{contents}")
|
||||
if len(contents) == 2 and contents[0] == self.config["target_word"]:
|
||||
target = contents[1]
|
||||
target = " ".join(contents[1:])
|
||||
self.bot.log_d(f"{target}")
|
||||
self.bot.say(event.target, self.get_reply(event, target=target))
|
||||
return True
|
||||
|
|
Loading…
Reference in a new issue