From 772c892afaa5572ccc17335d04db7dcbb058d9f4 Mon Sep 17 00:00:00 2001 From: Aaron Kimbre Date: Thu, 27 Jul 2023 16:20:12 -0500 Subject: [PATCH] fix newline --- dGame/dComponents/VendorComponent.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dGame/dComponents/VendorComponent.cpp b/dGame/dComponents/VendorComponent.cpp index 2b54ffe6..3c137922 100644 --- a/dGame/dComponents/VendorComponent.cpp +++ b/dGame/dComponents/VendorComponent.cpp @@ -95,8 +95,7 @@ void VendorComponent::RefreshInventory(bool isCreation) { if (m_RefreshTimeSeconds > 0.0) { m_Parent->AddCallbackTimer(m_RefreshTimeSeconds, [this]() { RefreshInventory(); - } - ); + }); } Game::entityManager->SerializeEntity(m_Parent); GameMessages::SendVendorStatusUpdate(m_Parent, UNASSIGNED_SYSTEM_ADDRESS);