From 793c2e8e509a7298f4a14b4d6be5cac460943505 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Tue, 20 Sep 2022 02:04:25 +0200 Subject: [PATCH] Rename 'Reputation_t' enumerant --- r5dev/engine/client/client.h | 2 +- r5dev/engine/net_chan.cpp | 2 +- r5dev/networksystem/bansystem.cpp | 14 +++++++------- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/r5dev/engine/client/client.h b/r5dev/engine/client/client.h index 5de6b826..65805738 100644 --- a/r5dev/engine/client/client.h +++ b/r5dev/engine/client/client.h @@ -10,7 +10,7 @@ enum Reputation_t { REP_NONE = 0, REP_REMOVE_ONLY, - REP_MARK + REP_MARK_BAD }; //----------------------------------------------------------------------------- diff --git a/r5dev/engine/net_chan.cpp b/r5dev/engine/net_chan.cpp index 1e63a76c..5d284ca7 100644 --- a/r5dev/engine/net_chan.cpp +++ b/r5dev/engine/net_chan.cpp @@ -242,7 +242,7 @@ bool CNetChan::ProcessMessages(CNetChan* pChan, bf_read* pMsg) { Warning(eDLL_T::ENGINE, "Removing netchannel '%s' ('%s' exceeded frame budget by '%3.1f'ms!)\n", pChan->GetName(), pChan->GetAddress(), (pSlot->m_flCurrentNetProcessTime - net_processTimeBudget->GetDouble())); - pClient->Disconnect(Reputation_t::REP_MARK, "#DISCONNECT_NETCHAN_OVERFLOW"); + pClient->Disconnect(Reputation_t::REP_MARK_BAD, "#DISCONNECT_NETCHAN_OVERFLOW"); return false; } diff --git a/r5dev/networksystem/bansystem.cpp b/r5dev/networksystem/bansystem.cpp index d53ab5da..794f75f8 100644 --- a/r5dev/networksystem/bansystem.cpp +++ b/r5dev/networksystem/bansystem.cpp @@ -227,7 +227,7 @@ void CBanSystem::BanListCheck(void) if (AddEntry(svIpAddress, pClient->GetNucleusID()) && !bSave) bSave = true; - pClient->Disconnect(Reputation_t::REP_MARK, m_vRefuseList[i].first.c_str()); + pClient->Disconnect(Reputation_t::REP_MARK_BAD, m_vRefuseList[i].first.c_str()); } } @@ -299,7 +299,7 @@ void CBanSystem::KickPlayerByName(const string& svPlayerName) if (strlen(pNetChan->GetName()) > 0) { if (svPlayerName.compare(pNetChan->GetName()) == NULL) // Our wanted name? - pClient->Disconnect(REP_MARK, "Kicked from server"); + pClient->Disconnect(REP_MARK_BAD, "Kicked from server"); } } } @@ -344,14 +344,14 @@ void CBanSystem::KickPlayerById(const string& svHandle) continue; } - pClient->Disconnect(REP_MARK, "Kicked from server"); + pClient->Disconnect(REP_MARK_BAD, "Kicked from server"); } else { if (svHandle.compare(pNetChan->GetAddress()) != NULL) continue; - pClient->Disconnect(REP_MARK, "Kicked from server"); + pClient->Disconnect(REP_MARK_BAD, "Kicked from server"); } } } @@ -386,7 +386,7 @@ void CBanSystem::BanPlayerByName(const string& svPlayerName) if (AddEntry(pNetChan->GetAddress(), pClient->GetNucleusID()) && !bSave) bSave = true; - pClient->Disconnect(REP_MARK, "Banned from server"); + pClient->Disconnect(REP_MARK_BAD, "Banned from server"); } } } @@ -441,7 +441,7 @@ void CBanSystem::BanPlayerById(const string& svHandle) bSave = true; Save(); - pClient->Disconnect(REP_MARK, "Banned from server"); + pClient->Disconnect(REP_MARK_BAD, "Banned from server"); } else { @@ -452,7 +452,7 @@ void CBanSystem::BanPlayerById(const string& svHandle) bSave = true; Save(); - pClient->Disconnect(REP_MARK, "Banned from server"); + pClient->Disconnect(REP_MARK_BAD, "Banned from server"); } }