.trebuchet command and whaleornot number as a float

This commit is contained in:
ferretinjapan 2017-07-24 15:34:38 +00:00 committed by GitHub
parent 2ee7558b79
commit d0643a8b97
1 changed files with 7 additions and 2 deletions

View File

@ -599,8 +599,10 @@ def whaleornot(bot, trigger):
bot.say("Gotta have skin in the game to be a big fish! Add some XMR after the command to see what level the player is at!") bot.say("Gotta have skin in the game to be a big fish! Add some XMR after the command to see what level the player is at!")
else: else:
try: try:
xmr_size = int(trigger.group(2)) xmr_size = float(trigger.group(2))
if xmr_size < 0.1: if xmr_size <= 0:
fish_string = "amoeba"
elif xmr_size < 0.1:
fish_string = "plankton" fish_string = "plankton"
elif xmr_size >= 0.1 and xmr_size < 0.2: elif xmr_size >= 0.1 and xmr_size < 0.2:
fish_string = "Paedocypris" fish_string = "Paedocypris"
@ -648,3 +650,6 @@ def whaleornot(bot, trigger):
except: except:
bot.say("Try a base ten representation of a number") bot.say("Try a base ten representation of a number")
@sopel.module.commands('trebuchet')
def trebuchet(bot, trigger):
bot.say("Can YOU use a counterweight to launch a 90 kg projectile over 300 meters? Yeah, I thought not.")