Skip to content

Commit

Permalink
backport to 1.21(.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fourmisain committed Dec 2, 2024
1 parent e6da286 commit 4c43e60
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
4 changes: 3 additions & 1 deletion changes.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
add compatibility for Serene Seasons (Fall/Winter Spawn Rate Multiplier)
rare backport to 1.21(.1):

- add compatibility for Serene Seasons (Fall/Winter Spawn Rate Multiplier)
14 changes: 7 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ org.gradle.warning.mode=all

# Fabric Properties
# check these on https://fabricmc.net/versions.html
minecraft_version=1.21.2
yarn_mappings=1.21.2+build.1
minecraft_version=1.21.1
yarn_mappings=1.21.1+build.3
loader_version=0.16.7

# Mod Properties
Expand All @@ -16,17 +16,17 @@ archives_base_name=fallingleaves

# Dependencies
java_version=21
fabric_api_version=0.106.1+1.21.2
cloth_config_version=16.0.141
modmenu_version=12.0.0-beta.1
fabric_api_version=0.106.0+1.21.1
cloth_config_version=15.0.140
modmenu_version=11.0.3
fabric_seasons_version=2.4.2-BETA+1.21
serene_seasons_version=S5y2NO2L

# Publishing
modrinth_id=WhbRG4iK
curseforge_id=417510
game_version_range=>=1.21.2
game_version_list=1.21.2
game_version_range=>=1.21 <1.21.2
game_version_list=1.21 <1.21.2
modrinth_dependencies=P7dR8mSH, 9s6osm5g
modrinth_optional_dependencies=mOgUt4GM
curseforge_dependencies=fabric-api, cloth-config
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ private void parseLeafSpawners() {

// parse properties
try {
var block = BlockArgumentParser.block(Registries.BLOCK, spawner, false);
var block = BlockArgumentParser.block(Registries.BLOCK.getReadOnlyWrapper(), spawner, false);
leafSpawnerProperties.put(id, block.properties());
} catch (CommandSyntaxException e) {
LOGGER.error("could not parse block state arguments of {}", spawner);
Expand Down

0 comments on commit 4c43e60

Please sign in to comment.