Skip to content

Commit

Permalink
Update to mc 1.16.3
Browse files Browse the repository at this point in the history
  • Loading branch information
TheEpicBlock committed Oct 5, 2020
1 parent eceb23b commit 5e16b74
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ dependencies {
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"

modImplementation "io.github.onyxstudios.Cardinal-Components-API:cardinal-components-base:2.4.0"
modImplementation "io.github.onyxstudios.Cardinal-Components-API:cardinal-components-chunk:2.4.0"
include "io.github.onyxstudios.Cardinal-Components-API:cardinal-components-base:2.4.0"
include "io.github.onyxstudios.Cardinal-Components-API:cardinal-components-chunk:2.4.0"
modImplementation "io.github.onyxstudios.Cardinal-Components-API:cardinal-components-base:2.6.0"
modImplementation "io.github.onyxstudios.Cardinal-Components-API:cardinal-components-chunk:2.6.0"
include "io.github.onyxstudios.Cardinal-Components-API:cardinal-components-base:2.6.0"
include "io.github.onyxstudios.Cardinal-Components-API:cardinal-components-chunk:2.6.0"
}

processResources {
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/use
minecraft_version=1.16.1
yarn_mappings=1.16.1+build.5
loader_version=0.8.8+build.202
minecraft_version=1.16.3
yarn_mappings=1.16.3+build.27
loader_version=0.10.0+build.208

# Mod Properties
mod_version = 1.1.0
Expand All @@ -14,4 +14,4 @@ org.gradle.jvmargs=-Xmx1G

# Dependencies
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
fabric_version=0.13.1+build.370-1.16
fabric_version=0.22.1+build.409-1.16
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void add(Chunk chunk) {
}

public void add(ChunkPos pos) {
add(world.getChunk(pos.getCenterBlockPos()));
add(world.getChunk(pos.x, pos.z));
}

public void doStuff() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void startTick(CallbackInfo ci){
public void chunkUpdateInject(long something, boolean something2, SpawnHelper.Info spawnInfo, boolean something3, int nothing, ChunkHolder chunkHolder, CallbackInfo ci) {
this.world.getProfiler().push("conwayBlocks");
if (ConwayMain.isTickConway(world.getServer().getTicks())) {
Chunk chunk = chunkHolder.getCompletedChunk();
Chunk chunk = chunkHolder.getCurrentChunk();
if (chunk != null && ChunkHolder.getLevelType(chunkHolder.getLevel()).isAfter(ChunkHolder.LevelType.TICKING)) {
ConwayCurrentStep.add(chunk);
}
Expand Down

0 comments on commit 5e16b74

Please sign in to comment.