From 8278185c9c6dff03838423482321d39425eee4a5 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Mon, 30 Jun 2025 22:00:59 +0200 Subject: [PATCH] core: update region and lightmap version The versions need to be updated for the new block type. --- src/core/common.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/common.rs b/src/core/common.rs index 3f3e69d..094d567 100644 --- a/src/core/common.rs +++ b/src/core/common.rs @@ -26,7 +26,7 @@ use crate::{ /// /// Increase when the generation of processed regions from region data changes /// (usually because of updated resource data) -pub const REGION_FILE_META_VERSION: FileMetaVersion = FileMetaVersion(7); +pub const REGION_FILE_META_VERSION: FileMetaVersion = FileMetaVersion(8); /// MinedMap map tile data version number /// @@ -38,7 +38,7 @@ pub const MAP_FILE_META_VERSION: FileMetaVersion = FileMetaVersion(0); /// /// Increase when the generation of lightmap tiles from region data changes /// (usually because of updated resource data) -pub const LIGHTMAP_FILE_META_VERSION: FileMetaVersion = FileMetaVersion(5); +pub const LIGHTMAP_FILE_META_VERSION: FileMetaVersion = FileMetaVersion(6); /// MinedMap mipmap data version number ///