diff options
-rw-r--r-- | src/defaults.cpp | 2 | ||||
-rw-r--r-- | src/localplayer.cpp | 14 |
2 files changed, 0 insertions, 16 deletions
diff --git a/src/defaults.cpp b/src/defaults.cpp index f70788eca..3e367db8b 100644 --- a/src/defaults.cpp +++ b/src/defaults.cpp @@ -398,8 +398,6 @@ DefaultsData* getPathsDefaults() AddDEF("maps", "maps/"); AddDEF("sfx", "sfx/"); - AddDEF("attackSfxFile", "fist-swish.ogg"); - AddDEF("missSfxFile", "fist-swish.ogg"); AddDEF("music", "music/"); AddDEF("wallpapers", "graphics/images/"); diff --git a/src/localplayer.cpp b/src/localplayer.cpp index d19a79eae..6546d31bd 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -1300,20 +1300,6 @@ void LocalPlayer::attack(Being *const target, const bool keep, { setAction(ATTACK); -/* - if (mEquippedWeapon) - { - std::string soundFile = mEquippedWeapon->getSound( - EQUIP_EVENT_STRIKE); - if (!soundFile.empty()) - soundManager.playSfx(soundFile); - } - else - { - soundManager.playSfx(paths.getValue( - "attackSfxFile", "fist-swish.ogg")); - } -*/ if (!Client::limitPackets(PACKET_ATTACK)) return; |