ambience: use all words from content as target
This commit is contained in:
parent
2af36ef429
commit
f97e2c51e4
|
@ -36,10 +36,8 @@ class AmbiencePlugin(Plugin):
|
|||
return False
|
||||
target = None
|
||||
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]
|
||||
self.bot.log_d(f"{target}")
|
||||
if len(contents) >= 2 and contents[0] == self.config["target_word"]:
|
||||
target = " ".join(contents[1:])
|
||||
self.bot.say(event.target, self.get_reply(event, target=target))
|
||||
return True
|
||||
|
||||
|
|
Loading…
Reference in a new issue