Skip to content

Commit

Permalink
Update to 1.21.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Spottedleaf committed Oct 22, 2024
1 parent 5c3e713 commit 3e8cb80
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ allprojects {
mavenLocal {
mavenContent {
includeModule("ca.spottedleaf", "concurrentutil")
includeModule("net.neoforged", "neoforge")
}
}
maven {
Expand Down Expand Up @@ -99,7 +98,8 @@ subprojects {
}
loom.runs.all {
ideConfigGenerated true
// property "mixin.debug", "true"
property "mixin.debug", "true"
property "Moonrise.MaxViewDistance", "128"
}

plugins.apply("me.modmuss50.mod-publish-plugin")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void setCurrentlyLoading(final GenerationChunkHolder holder, final LevelC

@Override
public void chunkFullStatusComplete(final LevelChunk newChunk, final ProtoChunk original) {
ServerChunkEvents.CHUNK_LOAD.invoker().onChunkLoad((ServerLevel) newChunk.getLevel(), newChunk);
ServerChunkEvents.CHUNK_LOAD.invoker().onChunkLoad((ServerLevel)newChunk.getLevel(), newChunk);
}

@Override
Expand All @@ -77,7 +77,7 @@ public void onChunkHolderTicketChange(final ServerLevel world, final NewChunkHol

@Override
public void chunkUnloadFromWorld(final LevelChunk chunk) {
ServerChunkEvents.CHUNK_UNLOAD.invoker().onChunkUnload((ServerLevel) chunk.getLevel(), chunk);
ServerChunkEvents.CHUNK_UNLOAD.invoker().onChunkUnload((ServerLevel)chunk.getLevel(), chunk);
}

@Override
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ org.gradle.jvmargs=-Xmx2G
org.gradle.daemon=false
# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.21.2-rc1
minecraft_version=1.21.2
loader_version=0.16.7
supported_minecraft_versions=1.21.2-rc1
neoforge_version=21.2.0-alpha.1.21.2-rc1.20241021.144525
supported_minecraft_versions=1.21.2
neoforge_version=21.2.0-beta
fabric_api_version=0.106.1+1.21.2
snakeyaml_version=2.2
concurrentutil_version=0.0.2-SNAPSHOT
Expand All @@ -16,6 +16,6 @@ modmenu_version=12.0.0-beta.1
fabric_lithium_version=mc1.21.1-0.14.0-beta.1
neo_lithium_version=BrMIoIMv
# Mod Properties
mod_version=0.1.0-SNAPSHOT
mod_version=0.2.0-SNAPSHOT
maven_group=ca.spottedleaf.moonrise
archives_base_name=moonrise
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ public CompletableFuture<ChunkResult<LevelChunk>> prepareTickingChunk(final Chun
* @author Spottedleaf
*/
@Overwrite
public void onChunkReadyToSend(final LevelChunk chunk) {
public void onChunkReadyToSend(final ChunkHolder holder, final LevelChunk chunk) {
throw new UnsupportedOperationException();
}

Expand Down

0 comments on commit 3e8cb80

Please sign in to comment.