fix newline

This commit is contained in:
Aaron Kimbre 2023-07-27 16:20:12 -05:00
parent 666f0213ab
commit 772c892afa

View File

@ -95,8 +95,7 @@ void VendorComponent::RefreshInventory(bool isCreation) {
if (m_RefreshTimeSeconds > 0.0) { if (m_RefreshTimeSeconds > 0.0) {
m_Parent->AddCallbackTimer(m_RefreshTimeSeconds, [this]() { m_Parent->AddCallbackTimer(m_RefreshTimeSeconds, [this]() {
RefreshInventory(); RefreshInventory();
} });
);
} }
Game::entityManager->SerializeEntity(m_Parent); Game::entityManager->SerializeEntity(m_Parent);
GameMessages::SendVendorStatusUpdate(m_Parent, UNASSIGNED_SYSTEM_ADDRESS); GameMessages::SendVendorStatusUpdate(m_Parent, UNASSIGNED_SYSTEM_ADDRESS);