diff --git a/AutoTrackR2/AutoTrackR2.csproj b/AutoTrackR2/AutoTrackR2.csproj
index 8ead1aa..3110af0 100644
--- a/AutoTrackR2/AutoTrackR2.csproj
+++ b/AutoTrackR2/AutoTrackR2.csproj
@@ -10,7 +10,7 @@
     <Configurations>Debug;Release;Test</Configurations>
     <Platforms>AnyCPU;x64</Platforms>
     <ApplicationIcon>AutoTrackR2.ico</ApplicationIcon>
-    <Version>2.0</Version>
+    <Version>2.12</Version>
     <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
     <GenerateAssemblyInfo>true</GenerateAssemblyInfo>
     <Deterministic>true</Deterministic>
diff --git a/AutoTrackR2/Constants.cs b/AutoTrackR2/Constants.cs
index af4cfba..78dab89 100644
--- a/AutoTrackR2/Constants.cs
+++ b/AutoTrackR2/Constants.cs
@@ -2,5 +2,5 @@ namespace AutoTrackR2.Constants;
 
 public static class AppConstants
 {
-  public static string Version => System.Reflection.Assembly.GetExecutingAssembly().GetName().Version?.ToString() ?? "2.0";
+  public static string Version => System.Reflection.Assembly.GetExecutingAssembly().GetName().Version?.ToString(2) ?? "2.0";
 }
\ No newline at end of file
diff --git a/AutoTrackR2/KillStreakManager.cs b/AutoTrackR2/KillStreakManager.cs
index 1c8bc8a..f84d27c 100644
--- a/AutoTrackR2/KillStreakManager.cs
+++ b/AutoTrackR2/KillStreakManager.cs
@@ -38,6 +38,7 @@ public class KillStreakManager : IDisposable
       // Handle multi-kill announcements
       string? multiKillSound = _currentKills switch
       {
+        1 => "dog_bowl.wav",
         2 => "double_kill.wav",
         3 => "triple_kill.wav",
         4 => "overkill.wav",
diff --git a/AutoTrackR2/sounds/dog_bowl.wav b/AutoTrackR2/sounds/dog_bowl.wav
new file mode 100644
index 0000000..96096ac
Binary files /dev/null and b/AutoTrackR2/sounds/dog_bowl.wav differ