Skip to content

Commit 63052bb

Browse files
committed
a few small corrections.
1 parent 531525e commit 63052bb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

plugins/fmk.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ def load_fmk(bot):
1616
fmklist = [line.strip() for line in f.readlines() if not line.startswith("//")]
1717

1818
@hook.command("fmk", autohelp=False)
19-
def fmk(text, action):
19+
def fmk(text, message):
2020
"""Fuck, Marry, Kill"""
21-
message((text.strip() if text.strip() else "") + random.choice(fmklist) + ", " + random.choice(fmklist) + ", " + random.choice(fmklist))
21+
message(" {} FMK - {}, {}, {}".format((text.strip() if text.strip() else ""), random.choice(fmklist), random.choice(fmklist), random.choice(fmklist)))

0 commit comments

Comments
 (0)