Fixes falling sound choice bug
This commit is contained in:
parent
2827d5ac0d
commit
2316d24942
|
@ -704,6 +704,6 @@ player_add_artifact(Player *p, Artifact *a)
|
||||||
void
|
void
|
||||||
player_set_falling(Player *player)
|
player_set_falling(Player *player)
|
||||||
{
|
{
|
||||||
mixer_play_effect(FALL0 + get_random(2) - 1);
|
mixer_play_effect(FALL0 + get_random(1));
|
||||||
player->state = FALLING;
|
player->state = FALLING;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue