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

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