Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2012-10-10 18:11:03 +0000
committerStijn Buys <ingar@osirion.org>2012-10-10 18:11:03 +0000
commit54c29f6e8ae8f504e455de79ecbb1a16d0e634a1 (patch)
tree732330a1049b06a18ad7c71e5a95c7c92500eaeb /src/core/entity.cc
parent90be07acb8d2a2c481761ef754d938559510ae0f (diff)
Added zone info parameters to the zone update network message, updated the network protocol version to 24.
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();
}
}