Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
paulevsGitch committed Jun 7, 2021
1 parent 0f012d0 commit 72e14a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ yarn_mappings=6
loader_version=0.11.3

# Mod Properties
mod_version = 0.1.23
mod_version = 0.1.24
maven_group = ru.bclib
archives_base_name = bclib

Expand Down
3 changes: 2 additions & 1 deletion src/main/java/ru/bclib/world/biomes/BCLBiomeDef.java
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,9 @@ public BCLBiomeDef addCarver(Carving carverStep, ConfiguredWorldCarver<Probabili
return this;
}

public void addCustomData(String name, Object value) {
public BCLBiomeDef addCustomData(String name, Object value) {
customData.put(name, value);
return this;
}

@SuppressWarnings("unchecked")
Expand Down

0 comments on commit 72e14a5

Please sign in to comment.