1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-29 09:44:52 +01:00

Apply some refactoring

This commit is contained in:
Christian F. Coors
2017-10-03 00:00:32 +02:00
committed by Michael Steenbeek
parent 386a399a51
commit 06afeeda9a
60 changed files with 221 additions and 292 deletions

View File

@@ -26,9 +26,9 @@ sint32 NetworkActions::FindCommand(sint32 command)
{
auto it = std::find_if(Actions.begin(), Actions.end(), [&command](NetworkAction const &action)
{
for (auto it2 = action.Commands.begin(); it2 != action.Commands.end(); it2++)
for (int currentCommand : action.Commands)
{
if ((*it2) == command)
if (currentCommand == command)
{
return true;
}
@@ -46,11 +46,7 @@ sint32 NetworkActions::FindCommandByPermissionName(const std::string &permission
{
auto it = std::find_if(Actions.begin(), Actions.end(), [&permission_name](NetworkAction const &action)
{
if (action.PermissionName == permission_name)
{
return true;
}
return false;
return action.PermissionName == permission_name;
});
if (it != Actions.end())
{