aboutsummaryrefslogtreecommitdiff
path: root/MuseumDeserializer.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-25 13:02:38 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-25 13:02:38 +0200
commit8cf389aaf748c77aecda0b3a3773c45053b0f231 (patch)
tree91268879710d6ae2868e548d3f44c664a19443d8 /MuseumDeserializer.cpp
parentda669db4f083194bc78358041c5d9929e103ac9f (diff)
implement all ALGA features
Diffstat (limited to 'MuseumDeserializer.cpp')
-rw-r--r--MuseumDeserializer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/MuseumDeserializer.cpp b/MuseumDeserializer.cpp
index 4f53887..8518872 100644
--- a/MuseumDeserializer.cpp
+++ b/MuseumDeserializer.cpp
@@ -17,7 +17,7 @@ void MuseumDeserializer::set_tile(TileData data) {
void MuseumDeserializer::add_type(std::string type, Color color, unsigned int weight) {
if (type.length() == 0) return;
- this->museum.canvas.tile_color.register_color(type, color);
+ this->museum.canvas.tile_color.register_color(type, color);
this->museum.pathfinding.register_weight(type, weight);
}