Skip to content

Commit b88c7b0

Browse files
committed
Make suggested changes
1 parent d70eda6 commit b88c7b0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Server/mods/deathmatch/logic/CConsoleCommands.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static void EndConsoleOutputCapture(CClient* pClient, const SString& strIfNoOutp
6060
}
6161
}
6262

63-
bool CConsoleCommands::StartResource(CConsole* console, const char* arguments, CClient* client, CClient* echo) noexcept
63+
bool CConsoleCommands::StartResource(CConsole* console, const char* arguments, CClient* client, CClient* echo)
6464
{
6565
if (!arguments || !arguments[0])
6666
{
@@ -115,7 +115,7 @@ bool CConsoleCommands::StartResource(CConsole* console, const char* arguments, C
115115
return true;
116116
}
117117

118-
bool CConsoleCommands::RestartResource(CConsole* console, const char* arguments, CClient* client, CClient* echo) noexcept
118+
bool CConsoleCommands::RestartResource(CConsole* console, const char* arguments, CClient* client, CClient* echo)
119119
{
120120
if (!arguments || !arguments[0])
121121
{
@@ -221,7 +221,7 @@ bool CConsoleCommands::ResourceInfo(CConsole* pConsole, const char* szArguments,
221221
return false;
222222
}
223223

224-
bool CConsoleCommands::StopResource(CConsole* console, const char* arguments, CClient* client, CClient* echo) noexcept
224+
bool CConsoleCommands::StopResource(CConsole* console, const char* arguments, CClient* client, CClient* echo)
225225
{
226226
if (!arguments || !arguments[0])
227227
{

Server/mods/deathmatch/logic/CConsoleCommands.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ class CConsoleCommands
1717
{
1818
public:
1919
static bool Update(class CConsole* pConsole, const char* szArguments, CClient* pClient, CClient* pEchoClient);
20-
static bool StartResource(CConsole* console, const char* arguments, CClient* client, CClient* echo) noexcept;
21-
static bool StopResource(CConsole* console, const char* arguments, CClient* client, CClient* echo) noexcept;
20+
static bool StartResource(CConsole* console, const char* arguments, CClient* client, CClient* echo);
21+
static bool StopResource(CConsole* console, const char* arguments, CClient* client, CClient* echo);
2222
static bool StopAllResources(class CConsole* pConsole, const char* szArguments, CClient* pClient, CClient* pEchoClient);
23-
static bool RestartResource(CConsole* console, const char* arguments, CClient* client, CClient* echo) noexcept;
23+
static bool RestartResource(CConsole* console, const char* arguments, CClient* client, CClient* echo);
2424
static bool RefreshResources(class CConsole* pConsole, const char* szArguments, CClient* pClient, CClient* pEchoClient);
2525
static bool RefreshAllResources(class CConsole* pConsole, const char* szArguments, CClient* pClient, CClient* pEchoClient);
2626
static bool ListResources(class CConsole* pConsole, const char* szArguments, CClient* pClient, CClient* pEchoClient);

0 commit comments

Comments
 (0)