From 699b6d31a2b83f2dddf275e1fdfc52c31424dfe8 Mon Sep 17 00:00:00 2001 From: Rushi <44952533+Skyliegirl33@users.noreply.github.com> Date: Sat, 12 Feb 2022 19:20:13 +0000 Subject: [PATCH] Fix spacing --- src/world/Actor/PlayerInventory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/world/Actor/PlayerInventory.cpp b/src/world/Actor/PlayerInventory.cpp index 4915c279..b1112d47 100644 --- a/src/world/Actor/PlayerInventory.cpp +++ b/src/world/Actor/PlayerInventory.cpp @@ -1084,7 +1084,7 @@ bool Sapphire::Entity::Player::findFirstItemWithId( uint32_t catalogId, for( const auto& item : container->getItemMap() ) { - if(( item.second && item.second->getId() != catalogId ) || !item.second ) + if( ( item.second && item.second->getId() != catalogId ) || !item.second ) continue; location = std::make_pair( bagId, item.first ); @@ -1094,4 +1094,4 @@ bool Sapphire::Entity::Player::findFirstItemWithId( uint32_t catalogId, } return false; -} \ No newline at end of file +}