summary refs log tree commit diff stats
path: root/tools/mapedit/src/world.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/mapedit/src/world.cpp')
-rw-r--r--tools/mapedit/src/world.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mapedit/src/world.cpp b/tools/mapedit/src/world.cpp index db1201e..fb0bb36 100644 --- a/tools/mapedit/src/world.cpp +++ b/tools/mapedit/src/world.cpp
@@ -114,7 +114,7 @@ World::World(std::string filename)
114 xmlChar* key = xmlNodeListGetString(doc, mapNode->xmlChildrenNode, 1); 114 xmlChar* key = xmlNodeListGetString(doc, mapNode->xmlChildrenNode, 1);
115 if (key != 0) 115 if (key != 0)
116 { 116 {
117 map->setRightmap(atoi((char*) key)); 117 map->setRightmap(atoi((char*) key), false);
118 } 118 }
119 xmlFree(key); 119 xmlFree(key);
120 } else if (!xmlStrcmp(mapNode->name, (const xmlChar*) "entities")) 120 } else if (!xmlStrcmp(mapNode->name, (const xmlChar*) "entities"))