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/parser.cc')
-rw-r--r--src/core/parser.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/parser.cc b/src/core/parser.cc
index d6f6f8f..0cee506 100644
--- a/src/core/parser.cc
+++ b/src/core/parser.cc
@@ -46,8 +46,7 @@ bool Parser::got_entity_key(filesystem::IniFile &inifile, core::Entity *entity)
entity->set_name(strval);
return true;
} else if (inifile.got_key_string("model", strval)) {
- // FIXME "remove maps/ prefix"
- entity->set_modelname("maps/" + strval);
+ entity->set_modelname(strval);
return true;
} else if (inifile.got_key_bool("showonmap", blnval)) {
if (blnval)