if(!['heads','head','h','tails','tail','t'].includes(options.call.toLowerCase().trim())){returnmessage.channel.send("Your `-call` must be `heads` or `tails`. Try again!");}
if(options.reason&&options.reason.length>250){returnmessage.channel.send("Listen pal, your'e flipping a coin... it ain't that serious. You don't need that big of a reason!");}
if(options.against&&options.against.length>35){returnmessage.channel.send("The person you're flipping a coin against has a name that's wayyy too long for me to remember. Could you try a nickname instead?");}
if(options.against&&options.against.length){coinEmbed.addField("Against",`Coin flipped against ${options.against}`,true);}
if(calls){coinEmbed.addField("Call",`${message.guild?message.member.displayName:message.author.username} called **${calls['1']}** ${options.against&&options.against.length?`(leaving ${options.against} with **${calls['2']}**)`:''} and **${(calls['1']==='Heads'&&flip===1)||(calls['2']==='Heads'&&flip===2)?'was':"wasn't"}** correct!`);}