12 lines
316 B
Python
Executable file
12 lines
316 B
Python
Executable file
from util import hook
|
|
import random
|
|
|
|
with open("plugins/data/fortunes.txt") as f:
|
|
fortunes = [line.strip() for line in f.readlines()
|
|
if not line.startswith("//")]
|
|
|
|
|
|
@hook.command(autohelp=False)
|
|
def fortune(inp):
|
|
"""fortune -- Fortune cookies on demand."""
|
|
return random.choice(fortunes)
|