* Fixes #2783 hopefully Needs to be tested still. Goal: changed blasting to use half as much as time as regular furnace for same item. * Fixed bug in commit thanks to ErrorSys forgot that order of optional arguments is important and that int can be cast to float automatically
This commit is contained in:
parent
3b6e1d1d89
commit
92f98a5c56
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ class SmeltingRecipesProvider extends TechRebornRecipesProvider {
|
||||||
(TRContent.Dusts.ZINC.asTag()) : TRContent.Ingots.ZINC
|
(TRContent.Dusts.ZINC.asTag()) : TRContent.Ingots.ZINC
|
||||||
].each { input, output ->
|
].each { input, output ->
|
||||||
offerSmelting(input, output)
|
offerSmelting(input, output)
|
||||||
offerBlasting(input, output)
|
offerBlasting(input, output, 0.5f, 100)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue