1 Commits

Author SHA1 Message Date
d675832ecb Updated README for 1.4.1 release
All checks were successful
build / build (push) Successful in 1m17s
2025-05-20 12:20:23 +02:00
4 changed files with 61 additions and 61 deletions

View File

@ -4,8 +4,8 @@ org.gradle.parallel=true
# Fabric Properties # Fabric Properties
# check these on https://fabricmc.net/develop # check these on https://fabricmc.net/develop
minecraft_version=1.21.4 minecraft_version=1.21.5
yarn_mappings=1.21.4+build.8 yarn_mappings=1.21.5+build.1
loader_version=0.16.10 loader_version=0.16.10
# Mod Properties # Mod Properties
@ -14,6 +14,6 @@ maven_group=wtf.hak.survivalfabric
archives_base_name=survivalfabric archives_base_name=survivalfabric
# Dependencies # Dependencies
fabric_version=0.119.0+1.21.4 fabric_version=0.119.5+1.21.5
modmenu_version=13.0.3 modmenu_version=14.0.0-rc.2

View File

@ -37,7 +37,7 @@ public abstract class BlockMixin {
Block seedBlock = state.getBlock(); Block seedBlock = state.getBlock();
List<ItemStack> drops = Block.getDroppedStacks(state, (ServerWorld) world, pos, null, player, mainHand); List<ItemStack> drops = Block.getDroppedStacks(state, (ServerWorld) world, pos, null, player, mainHand);
if (removeIfAvailable(drops, seedItem)) { if (removeIfAvailable(drops, seedItem)) {
if (!player.isCreative()) { if (player.getGameMode() != GameMode.CREATIVE) {
for (ItemStack drop : drops) { for (ItemStack drop : drops) {
Block.dropStack(world, pos, drop); Block.dropStack(world, pos, drop);
} }

View File

@ -38,7 +38,7 @@
], ],
"depends": { "depends": {
"fabricloader": ">=0.16.10", "fabricloader": ">=0.16.10",
"minecraft": "~1.21.4", "minecraft": "~1.21.5",
"java": ">=21", "java": ">=21",
"fabric-api": "*" "fabric-api": "*"
}, },