From 830e0f66c9ce9a3f84e73572c5f1c167a35f83f8 Mon Sep 17 00:00:00 2001 From: William Moberg Date: Tue, 9 Feb 2016 17:21:10 +0100 Subject: [PATCH] Tiny: Changed warning message. --- src/Engine/Core/EntityWrapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);