v0.8.1: fixed an incorrect sound file when hero steps on hard surfaces
This commit is contained in:
@@ -1564,7 +1564,7 @@ public class Hero extends Char {
|
|||||||
if (Dungeon.level.water[pos]) {
|
if (Dungeon.level.water[pos]) {
|
||||||
Sample.INSTANCE.play( Assets.Sounds.WATER, 1, Random.Float( 0.8f, 1.25f ) );
|
Sample.INSTANCE.play( Assets.Sounds.WATER, 1, Random.Float( 0.8f, 1.25f ) );
|
||||||
} else if (Dungeon.level.map[pos] == Terrain.EMPTY_SP) {
|
} else if (Dungeon.level.map[pos] == Terrain.EMPTY_SP) {
|
||||||
Sample.INSTANCE.play( Assets.Sounds.TRAMPLE, 1, Random.Float( 0.96f, 1.05f ) );
|
Sample.INSTANCE.play( Assets.Sounds.STURDY, 1, Random.Float( 0.96f, 1.05f ) );
|
||||||
} else if (Dungeon.level.map[pos] == Terrain.GRASS
|
} else if (Dungeon.level.map[pos] == Terrain.GRASS
|
||||||
|| Dungeon.level.map[pos] == Terrain.EMBERS
|
|| Dungeon.level.map[pos] == Terrain.EMBERS
|
||||||
|| Dungeon.level.map[pos] == Terrain.FURROWED_GRASS){
|
|| Dungeon.level.map[pos] == Terrain.FURROWED_GRASS){
|
||||||
|
|||||||
Reference in New Issue
Block a user