Small fix

This commit is contained in:
paulevsGitch 2021-06-07 13:52:58 +03:00
parent 0f012d0886
commit 72e14a5e53
2 changed files with 3 additions and 2 deletions

View file

@ -8,7 +8,7 @@ yarn_mappings=6
loader_version=0.11.3 loader_version=0.11.3
# Mod Properties # Mod Properties
mod_version = 0.1.23 mod_version = 0.1.24
maven_group = ru.bclib maven_group = ru.bclib
archives_base_name = bclib archives_base_name = bclib

View file

@ -373,8 +373,9 @@ public class BCLBiomeDef {
return this; return this;
} }
public void addCustomData(String name, Object value) { public BCLBiomeDef addCustomData(String name, Object value) {
customData.put(name, value); customData.put(name, value);
return this;
} }
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")