Skip to content

Commit

Permalink
build: 23w17a
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed Apr 27, 2023
1 parent 1a86c1e commit 3455743
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,27 +114,27 @@ public void checkBlock(BlockPos blockPos) {
}

@Override
public void addLightSource(BlockPos blockPos, int i) {
public boolean hasUpdates() {
throw new UnsupportedOperationException();
}

@Override
public boolean hasUpdates() {
public int doLightUpdates() {
throw new UnsupportedOperationException();
}

@Override
public int doLightUpdates(int i, boolean bl, boolean bl2) {
public void setSectionStatus(ChunkSectionPos pos, boolean notReady) {
throw new UnsupportedOperationException();
}

@Override
public void setSectionStatus(ChunkSectionPos pos, boolean notReady) {
public void setColumnEnabled(ChunkPos chunkPos, boolean bl) {
throw new UnsupportedOperationException();
}

@Override
public void setColumnEnabled(ChunkPos chunkPos, boolean bl) {
public void propagateLight(ChunkPos chunkPos) {
throw new UnsupportedOperationException();
}

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ org.gradle.parallel=true
fabric.loom.multiProjectOptimisation=true
# Fabric Properties
# check these on https://fabricmc.net/versions.html
minecraft_version=23w16a
yarn_mappings=23w16a+build.6
minecraft_version=23w17a
yarn_mappings=23w17a+build.4
loader_version=0.14.19
# Mod Properties
mod_version=0.2.0+alpha.10
Expand Down
6 changes: 3 additions & 3 deletions tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ allprojects {
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
// modApi 'com.github.astei:lazydfu:0.1.2'
modApi('com.github.RelativityMC:Starlight:03ab3acd94') {
transitive = false
}
// modApi('com.github.RelativityMC:Starlight:03ab3acd94') {
// transitive = false
// }
implementation "com.ibm.async:asyncutil:${async_util_version}"
}
processResources {
Expand Down

0 comments on commit 3455743

Please sign in to comment.