Compare commits

...

3 Commits

Author SHA1 Message Date
Spottedleaf
6841805446 Set version to 0.1.0-beta.13 2025-06-09 02:13:51 -07:00
Spottedleaf
eb20846213 Fix infinite loop in RegionFile IO
If an exception is thrown during decompress then the read process
would be started again, which of course would eventually throw in
the decompress process.
2025-06-09 02:12:01 -07:00
Spottedleaf
66a0850ac9 Set version to 0.1.0-SNAPSHOT 2025-02-24 20:59:03 -08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -15,6 +15,6 @@ cloth_version=15.0.128
fabric_lithium_version=frXUdgvL fabric_lithium_version=frXUdgvL
neo_lithium_version=KhdehJ6l neo_lithium_version=KhdehJ6l
# Mod Properties # Mod Properties
mod_version=0.1.0-beta.12 mod_version=0.1.0-beta.13
maven_group=ca.spottedleaf.moonrise maven_group=ca.spottedleaf.moonrise
archives_base_name=moonrise archives_base_name=moonrise

View File

@@ -1042,7 +1042,7 @@ public final class MoonriseRegionFileIO {
LOGGER.error("Failed to decompress chunk data for task: " + this.toString(), thr); LOGGER.error("Failed to decompress chunk data for task: " + this.toString(), thr);
} }
if (compoundTag == null) { if (throwable == null && compoundTag == null) {
// need to re-try from the start // need to re-try from the start
this.scheduleReadIO(); this.scheduleReadIO();
return; return;