aboutsummaryrefslogtreecommitdiff
path: root/frontend/load_dungeon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/load_dungeon.cpp')
-rw-r--r--frontend/load_dungeon.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/load_dungeon.cpp b/frontend/load_dungeon.cpp
index 75edf16..e5a1e82 100644
--- a/frontend/load_dungeon.cpp
+++ b/frontend/load_dungeon.cpp
@@ -63,13 +63,13 @@ unique_ptr<Dungeon> load_dungeon(const string & filename) {
Object * object = gamedata.create_object(name);
location->add_visible_object(object);
}
-
+
vector<string> enemies = str_split(tag.attribute("vijand").as_string(), ";");
for (string & name : enemies) {
Enemy * enemy = gamedata.create_enemy(name);
location->add_enemy(enemy);
}
-
+
temp_map[tag.attribute("id").as_uint()] = {
.location = location,
.edges = {