Why was this code even here? o-o
This commit is contained in:
parent
5281cc6fff
commit
2e597038ea
1 changed files with 0 additions and 4 deletions
|
@ -38,8 +38,4 @@ answers = [g + "As I see it, yes",
|
||||||
def eightball(inp, me=None):
|
def eightball(inp, me=None):
|
||||||
".8ball <question> -- The all knowing magic eight ball, " \
|
".8ball <question> -- The all knowing magic eight ball, " \
|
||||||
"in electronic form. Ask and it shall be answered!"
|
"in electronic form. Ask and it shall be answered!"
|
||||||
global nextresponsenumber
|
|
||||||
inp = inp.strip()
|
|
||||||
if re.match("[a-zA-Z0-9]", inp[-1]):
|
|
||||||
inp += "?"
|
|
||||||
me("shakes the magic 8 ball... %s" % (random.choice(answers)))
|
me("shakes the magic 8 ball... %s" % (random.choice(answers)))
|
||||||
|
|
Reference in a new issue