mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-29 08:27:03 +01:00
Fix blaze cake burn time
- 240 ticks/1.2 items -> 6400 ticks/32 items
This commit is contained in:
parent
a17dd26aab
commit
8f4be44a6d
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ public class AllItems {
|
||||||
|
|
||||||
public static final ItemEntry<CombustibleItem> BLAZE_CAKE = REGISTRATE.item("blaze_cake", CombustibleItem::new)
|
public static final ItemEntry<CombustibleItem> BLAZE_CAKE = REGISTRATE.item("blaze_cake", CombustibleItem::new)
|
||||||
.tag(AllItemTags.UPRIGHT_ON_BELT.tag)
|
.tag(AllItemTags.UPRIGHT_ON_BELT.tag)
|
||||||
.onRegister(i -> i.setBurnTime(240))
|
.onRegister(i -> i.setBurnTime(6400))
|
||||||
.register();
|
.register();
|
||||||
|
|
||||||
public static final ItemEntry<CombustibleItem> CREATIVE_CAKE = REGISTRATE.item("creative_cake", CombustibleItem::new)
|
public static final ItemEntry<CombustibleItem> CREATIVE_CAKE = REGISTRATE.item("creative_cake", CombustibleItem::new)
|
||||||
|
|
Loading…
Reference in a new issue