From 02a144573263e7100c6348a487d6fece3f1c94ce Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sun, 10 Mar 2024 21:14:59 -0500 Subject: [PATCH] Fix render data not regenerating on config change --- .../distanthorizons/core/sql/dto/NewFullDataSourceDTO.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/main/java/com/seibel/distanthorizons/core/sql/dto/NewFullDataSourceDTO.java b/core/src/main/java/com/seibel/distanthorizons/core/sql/dto/NewFullDataSourceDTO.java index 154b47230..cba8a4d7f 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/sql/dto/NewFullDataSourceDTO.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/sql/dto/NewFullDataSourceDTO.java @@ -129,6 +129,8 @@ public class NewFullDataSourceDTO implements IBaseDTO dataSource.levelMinY = this.levelMinY; + dataSource.markNotEmpty(); + return dataSource; }