Skip to content

Commit

Permalink
Update to 1.20.5-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Patbox committed Apr 18, 2024
1 parent b1a1fa6 commit d4457db
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mkdocs-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ jobs:
git config --global user.name Docs deploy
git config --global user.email docs@dummy.bot.com
mike set-default latest
mike deploy --push --update-aliases 0.7.x latest
mike deploy --push --update-aliases 0.8.x latest
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ org.gradle.jvmargs=-Xmx4G

# Fabric Properties
# check these on https://fabricmc.net/use
minecraft_version=1.20.5-pre3
yarn_mappings=1.20.5-pre3+build.2
minecraft_version=1.20.5-rc1
yarn_mappings=1.20.5-rc1+build.1
loader_version=0.15.10

#Fabric api
fabric_version=0.97.1+1.20.5

maven_group = eu.pb4

mod_version = 0.8.0-alpha.1
mod_version = 0.8.0-beta.1

minecraft_version_supported = ">=1.20.5-"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
public class ChunkDataMixin {
@WrapWithCondition(method = "<init>(Lnet/minecraft/world/chunk/WorldChunk;)V", at = @At(value = "INVOKE", target = "Ljava/util/List;add(Ljava/lang/Object;)Z"))
private boolean skipPolymerEntriesForBedrock(List<?> instance, Object e, @Local Map.Entry<BlockPos, BlockEntity> entry) {
return !PolymerCommonUtils.isBedrockPlayer(PolymerCommonUtils.getPlayerContext()) || !PolymerBlockUtils.isPolymerBlockEntityType(entry.getValue().getType());
return !PolymerBlockUtils.isPolymerBlockEntityType(entry.getValue().getType());
}
}

0 comments on commit d4457db

Please sign in to comment.