Yawn a bit less when it's night

This commit is contained in:
Hannes Braun 2024-03-24 18:52:16 +01:00 committed by Leon Henrik Plickat
commit a9bce5e10c
Failed to generate hash of commit

View file

@ -936,7 +936,10 @@ static bool animation_next_state_normal (void)
return true; return true;
default: default:
if (rand() % 3 == 0)
animation_neko_do_yawn(); animation_neko_do_yawn();
else
animation_neko_do_stare(false);
return true; return true;
} }
} }