Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2010-09-30 14:24:23 +0000
committerStijn Buys <ingar@osirion.org>2010-09-30 14:24:23 +0000
commit8b67219f7de2971114a81c5476dae578ac29e989 (patch)
tree5ec1b107127856afc1f9ed1acd65011c29db7c7f /src/core
parent3274ad9eeb02af614e1cba5cd05468de04069d6e (diff)
Correct r_restart bug where models didn't get reloaded as it should
Diffstat (limited to 'src/core')
-rw-r--r--src/core/entity.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/entity.cc b/src/core/entity.cc
index 1494438..ba79424 100644
--- a/src/core/entity.cc
+++ b/src/core/entity.cc
@@ -266,12 +266,11 @@ void Entity::set_zone(Zone *zone)
void Entity::set_model(model::Model *model)
{
+ // server-side property should not clear modelname
entity_model = model;
if (entity_model) {
entity_radius = entity_model->radius();
entity_modelname.assign(entity_model->name());
- } else {
- entity_modelname.clear();
}
if (entity_info) {