Why was this code even here? o-o

This commit is contained in:
lukeroge 2012-04-23 11:40:45 +12:00
parent 5281cc6fff
commit 2e597038ea

View file

@ -38,8 +38,4 @@ answers = [g + "As I see it, yes",
def eightball(inp, me=None):
".8ball <question> -- The all knowing magic eight ball, " \
"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)))