Fixes #2783 (#2791). Thanks to Ayutac

* 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:
Ayutac 2022-02-18 11:57:01 +01:00 committed by GitHub
parent 3b6e1d1d89
commit 92f98a5c56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -62,7 +62,7 @@ class SmeltingRecipesProvider extends TechRebornRecipesProvider {
(TRContent.Dusts.ZINC.asTag()) : TRContent.Ingots.ZINC
].each { input, output ->
offerSmelting(input, output)
offerBlasting(input, output)
offerBlasting(input, output, 0.5f, 100)
}
}