summary refs log tree commit diff stats
path: root/src/map.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.cpp')
-rw-r--r--src/map.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map.cpp b/src/map.cpp index 32203e5..a170288 100644 --- a/src/map.cpp +++ b/src/map.cpp
@@ -119,6 +119,8 @@ Map::Map(std::string_view name) : name_(name) {
119 p.mirrorAxis = property.getIntValue(); 119 p.mirrorAxis = property.getIntValue();
120 } else if (property.getName() == "mirrorSprite") { 120 } else if (property.getName() == "mirrorSprite") {
121 p.spriteToMirror = property.getStringValue(); 121 p.spriteToMirror = property.getStringValue();
122 } else if (property.getName() == "bumpPlayerScript") {
123 p.bumpPlayerScript = property.getStringValue();
122 } 124 }
123 } 125 }
124 126