YO
@@ -14,12 +14,12 @@ housebot = """\
▔▏┗┻┛┃┃┗┻┛▕▔
"""
-@as_plugin("hey")
+@as_plugin("yo")
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 + msg.args()[-1] + housebot
+ thehouse = housetop + list(msg.args())[6:] + housebot
return RollbotResponse(msg, txt=thehouse)