appreciate
@@ -14,12 +14,9 @@ housebot = """\
▔▏┗┻┛┃┃┗┻┛▕▔
"""
-@as_plugin("yo")
+@as_plugin("appreciate")
def the_house(db, msg):
- for x, y in zip(msg.args(), ("can", "i", "have", "the", "house", "with")):
- if x.lower() != y:
- return RollbotResponse(msg, failure=RollbotFailure.INVALID_ARGUMENTS)
-
- thehouse = housetop + ' '.join(list(msg.args(normalize=False))[6:]) + housebot
+
+ thehouse = housetop + ' '.join(list(msg.args(normalize=False))) + housebot
return RollbotResponse(msg, txt=thehouse)