mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-15 08:43:41 +01:00
Fix crate rarity
This commit is contained in:
parent
fd030d3273
commit
77ee23c208
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ public class BuilderTransformers {
|
|||
});
|
||||
})
|
||||
.item()
|
||||
.properties(p -> type.equals("creative") ? p : p.rarity(Rarity.EPIC))
|
||||
.properties(p -> type.equals("creative") ? p.rarity(Rarity.EPIC) : p)
|
||||
.transform(ModelGen.customItemModel("crate", type, "single"));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue