File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -53,9 +53,9 @@ namespace Misc
53
53
}
54
54
}
55
55
56
- void HitManager (const CEntity& LocalPlayer, int & PreviousTotalHits) noexcept
56
+ void HitManager (CEntity& LocalPlayer, int & PreviousTotalHits) noexcept
57
57
{
58
- if ((!MiscCFG::HitSound && !MiscCFG::HitMarker) || LocalPlayer.Controller .TeamID == 0 || MenuConfig::ShowMenu)
58
+ if ((!MiscCFG::HitSound && !MiscCFG::HitMarker) || LocalPlayer.Controller .TeamID == 0 || MenuConfig::ShowMenu || !LocalPlayer. IsAlive () )
59
59
{
60
60
return ;
61
61
}
Original file line number Diff line number Diff line change @@ -148,9 +148,9 @@ namespace Misc
148
148
149
149
};
150
150
151
- void Watermark (const CEntity& aLocalPlayer ) noexcept ;
152
- void HitManager (const CEntity& aLocalPlayer , int & PreviousTotalHits ) noexcept ;
153
- void BunnyHop (const CEntity& Local ) noexcept ;
151
+ void Watermark (const CEntity&) noexcept ;
152
+ void HitManager (CEntity&, int &) noexcept ;
153
+ void BunnyHop (const CEntity&) noexcept ;
154
154
void CleanTraces ();
155
155
// void FastStop() noexcept;// junk
156
156
}
You can’t perform that action at this time.
0 commit comments