diff --git a/src/Engine/Core/EntityWrapper.cpp b/src/Engine/Core/EntityWrapper.cpp index b0d08e66..642421bc 100644 --- a/src/Engine/Core/EntityWrapper.cpp +++ b/src/Engine/Core/EntityWrapper.cpp @@ -19,7 +19,7 @@ bool EntityWrapper::HasComponent(const std::string& componentName) void EntityWrapper::AttachComponent(const char* componentName) { if (!Valid()) { - LOG_WARNING("Could not attach \"%s\" component to #%i, component is not valid.", componentName, ID); + LOG_WARNING("Could not attach \"%s\" component to #%i, entity is not valid.", componentName, ID); return; } World->AttachComponent(ID, componentName);