fixed else if
This commit is contained in:
parent
190790a1af
commit
f5af4515a9
|
@ -738,9 +738,9 @@ def build_team_embed(team):
|
||||||
def vibe_check(vibes):
|
def vibe_check(vibes):
|
||||||
if vibes < -0.8:
|
if vibes < -0.8:
|
||||||
vibe_text = "Honestly Terrible"
|
vibe_text = "Honestly Terrible"
|
||||||
if vibes < -0.4 and vibes > -0.8:
|
elif vibes < -0.4 and vibes > -0.8:
|
||||||
vibe_text = "Far Less Than Ideal"
|
vibe_text = "Far Less Than Ideal"
|
||||||
if vibes < -0.1 and vibes > -0.4:
|
elif vibes < -0.1 and vibes > -0.4:
|
||||||
vibe_text = "Less Than Ideal"
|
vibe_text = "Less Than Ideal"
|
||||||
elif vibes > -0.1 and vibes < 0.1:
|
elif vibes > -0.1 and vibes < 0.1:
|
||||||
vibe_text = "Neutral"
|
vibe_text = "Neutral"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user