Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/entity.cc')
-rw-r--r--src/core/entity.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/entity.cc b/src/core/entity.cc
index 7bb5278..1b879f3 100644
--- a/src/core/entity.cc
+++ b/src/core/entity.cc
@@ -443,7 +443,7 @@ void Entity::receive_server_create(std::istream &is)
if (is >> o) {
if (!o) {
if (inventory()) {
- con_warn << "Receive no inventory for entity " << id() << " " << label() << " with inventory!" << std::endl;
+ con_warn << "No inventory received for entity " << id() << " " << label() << " with inventory!" << std::endl;
entity_inventory->clear();
}
} else {
@@ -453,7 +453,7 @@ void Entity::receive_server_create(std::istream &is)
}
} else {
if (inventory()) {
- con_warn << "Receive no inventory for entity " << id() << " " << label() << " with inventory!" << std::endl;
+ con_warn << "No inventory received for entity " << id() << " " << label() << " with inventory!" << std::endl;
entity_inventory->clear();
}
}