summaryrefslogtreecommitdiffhomepage
path: root/serialize
diff options
context:
space:
mode:
Diffstat (limited to 'serialize')
-rw-r--r--serialize/world-reader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/serialize/world-reader.cpp b/serialize/world-reader.cpp
index ac247553..68da2537 100644
--- a/serialize/world-reader.cpp
+++ b/serialize/world-reader.cpp
@@ -223,7 +223,7 @@ void reader_state::read_chunks(reader_t& s)
auto name = lookup_atlas(id);
if constexpr(std::is_same_v<ground_atlas, T>)
{
- auto atlas = loader.ground_atlas(name, true);
+ auto atlas = loader.ground_atlas(name, loader_policy::warn);
fm_soft_assert(v < atlas->num_tiles());
return { atlas, v };
}