diff --git a/Content/Legumix/Weapon/Revolver/BP_Revolver.uasset b/Content/Legumix/Weapon/Revolver/BP_Revolver.uasset index a856f7d..a9d36cc 100644 --- a/Content/Legumix/Weapon/Revolver/BP_Revolver.uasset +++ b/Content/Legumix/Weapon/Revolver/BP_Revolver.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69747eb332341171ff918ae22f4ee76665b726d27b5bfb2526f8d85f4a5483dc -size 49460 +oid sha256:62824fbc3f01c94f8c4d9f211e9499dd567bb367783863d6e84cdbe6da9b44a6 +size 49926 diff --git a/Content/Legumix/Weapon/Shotgun/BP_Shotgun.uasset b/Content/Legumix/Weapon/Shotgun/BP_Shotgun.uasset index f1cfe7d..8f1267a 100644 --- a/Content/Legumix/Weapon/Shotgun/BP_Shotgun.uasset +++ b/Content/Legumix/Weapon/Shotgun/BP_Shotgun.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba83cc1f0f293cb4f791e1beab4d509e65a0c141fd8fc799b3336202d1f35765 -size 55015 +oid sha256:842c4bb2d6150635ec1647ce09031f1c921049cf77863f0b1f32a4759f3179f8 +size 55475 diff --git a/Source/LegumeMix/Private/Weapon/LMRevolver.cpp b/Source/LegumeMix/Private/Weapon/LMRevolver.cpp index d5e9930..9e8027f 100644 --- a/Source/LegumeMix/Private/Weapon/LMRevolver.cpp +++ b/Source/LegumeMix/Private/Weapon/LMRevolver.cpp @@ -17,7 +17,7 @@ void ALMRevolver::PrimaryFire() if (!Player) return; - PlaySound(FireSound); + PlaySound(FireSound, true); PlayAnimation(PrimaryFireAnimation); const FVector Origin = Player->GetWeaponFiringOrigin(); diff --git a/Source/LegumeMix/Private/Weapon/LMShotgun.cpp b/Source/LegumeMix/Private/Weapon/LMShotgun.cpp index d2023ab..85a9a6c 100644 --- a/Source/LegumeMix/Private/Weapon/LMShotgun.cpp +++ b/Source/LegumeMix/Private/Weapon/LMShotgun.cpp @@ -18,7 +18,7 @@ void ALMShotgun::PrimaryFire() if (!Player) return; - PlaySound(FireSound); + PlaySound(FireSound, true); PlayAnimation(PrimaryFireAnimation); FVector Origin = Player->GetWeaponFiringOrigin();