Merge branch 'nahua/replace_sceptre_m2_sound' into 'master'

Issue 872: Replace explosion sound with heal bomb sound for sceptre M2

See merge request veloren/veloren!1618
This commit is contained in:
Samuel Keiffer 2020-12-13 23:18:30 +00:00
commit 7f7fc3a757
2 changed files with 7 additions and 1 deletions

Binary file not shown.

View File

@ -291,9 +291,15 @@ impl SfxMgr {
match outcome {
Outcome::Explosion { pos, power, .. } => {
let file_ref = if power.is_sign_positive() {
"voxygen.audio.sfx.explosion"
} else {
"voxygen.audio.sfx.abilities.heal_bomb"
};
audio.play_sfx(
// TODO: from sfx config?
"voxygen.audio.sfx.explosion",
file_ref,
*pos,
Some((power.abs() / 2.5).min(1.5)),
);