Changed priority for filler
This commit is contained in:
parent
294d59a88b
commit
81f6de2ac2
1 changed files with 2 additions and 2 deletions
|
@ -83,12 +83,12 @@ public class SurfaceRuleBuilder {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set biome filler with specified {@link BlockState}. Example - stone in the Overworld biomes. The rule is added with priority 3.
|
* Set biome filler with specified {@link BlockState}. Example - stone in the Overworld biomes. The rule is added with priority 10.
|
||||||
* @param state {@link BlockState} for filling.
|
* @param state {@link BlockState} for filling.
|
||||||
* @return same {@link SurfaceRuleBuilder} instance.
|
* @return same {@link SurfaceRuleBuilder} instance.
|
||||||
*/
|
*/
|
||||||
public SurfaceRuleBuilder filler(BlockState state) {
|
public SurfaceRuleBuilder filler(BlockState state) {
|
||||||
entryInstance = getFromCache("fill_" + state.toString(), () -> new SurfaceRuleEntry(3, SurfaceRules.state(state)));
|
entryInstance = getFromCache("fill_" + state.toString(), () -> new SurfaceRuleEntry(10, SurfaceRules.state(state)));
|
||||||
rules.add(entryInstance);
|
rules.add(entryInstance);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue