diff --git a/Client/Settings.cs b/Client/Settings.cs index 9b009e1..898de9c 100644 --- a/Client/Settings.cs +++ b/Client/Settings.cs @@ -58,7 +58,6 @@ namespace RageCoop.Client /// /// Disable automatic respawn. /// - public bool DisableAutoRespawn { get; set; } = true; - public float HpRechargeMultiplier { get; set; } = 1; + public bool DisableAutoRespawn { get; set; } = false; } } diff --git a/Client/Util/WeaponUtil.cs b/Client/Util/WeaponUtil.cs index bf0b44d..b164420 100644 --- a/Client/Util/WeaponUtil.cs +++ b/Client/Util/WeaponUtil.cs @@ -36,6 +36,11 @@ namespace RageCoop.Client int i; switch (v.Model.Hash) { + + // SAVAGE + case -82626025: + return new MuzzleInfo(v.Bones[30].Position, v.Bones[30].ForwardVector); + // BUZZARD case 788747387: i=Main.Ticked%2==0 ? 28 : 23;