if (Mood <= 1) Angry();
else if (Mood == 2 && Mood <= 5) Calm();
else if (Mood == 6 && Mood <= 8) Play();
I'm pretty sure that if Mood ==2 that it will be less than 5, also if it == 6 then it will be less than 8.
if (Mood <= 1) Angry();
else if (Mood == 2 && Mood <= 5) Calm();
else if (Mood == 6 && Mood <= 8) Play();
I'm pretty sure that if Mood ==2 that it will be less than 5, also if it == 6 then it will be less than 8.