-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement dummy IO worker for compat with mods that directly call loa…
…dAsync This change is targeting Distant Horizons compatibility, however further changes are needed on their side to read starlight data.
- Loading branch information
Showing
3 changed files
with
64 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...in/java/ca/spottedleaf/moonrise/patches/chunk_system/storage/ChunkSystemChunkStorage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
package ca.spottedleaf.moonrise.patches.chunk_system.storage; | ||
|
||
import net.minecraft.server.level.ServerLevel; | ||
import net.minecraft.world.level.chunk.storage.RegionFileStorage; | ||
|
||
public interface ChunkSystemChunkStorage { | ||
|
||
public RegionFileStorage moonrise$getRegionStorage(); | ||
|
||
public void moonrise$setLevel(final ServerLevel level); | ||
|
||
} |