| Age | Commit message (Collapse) | Author |
|
|
|
(#2254)
|
|
|
|
|
|
|
|
* Improve MK I burn time by 200% and MK II burn time by 250%
|
|
* Add a way to enrich tiberium dust
* Add alternate recipe for MK3 Fuel
* Bump deps
* Add new tier of catalyst and coolant to Naquadah Reactor
* Add T4 Field Restriction Coil
* Fix structure check on T4 coils
* Classic spotless
* Add Mark VI naquadah fuel
* Spotless
* Change shirabon to 1008L per recipe and make improved recipe need T4 coils
* Actually neverming, 1440L is much better for Shirabon
|
|
|
|
|
|
* fix orichalcum and shadowiron smelting
* add Alduorite and Chrysotile
|
|
recipes (#353)
Former-commit-id: 19def92e93b20e19f9bd9587b38d978abeb92666
|
|
* Add a way to enrich tiberium dust
* Add alternate recipe for MK3 Fuel
* Bump deps
* Add new tier of catalyst and coolant to Naquadah Reactor
* Add T4 Field Restriction Coil
* Fix structure check on T4 coils
* Classic spotless
|
|
* Address deprecations
* Fix NPE with Volcanus coil level
|
|
actual effects (#2244)
* Update redstone buttons and tooltips to better reflect actual use
* Spotless Apply
* Update GT_Cover_FluidRegulator.java
* Update GT_Cover_FluidRegulator.java
* Typo fix, Icon Improved and interactive blocking ui
- Fixed a typo in the world machine
- Fixed double button situation for conveyor belts.
- There was never any issue, the testing methodology gave me invalid results.
- Conveyor behaviour is in line with all the other covers affected by this PR/Branch.
- Updated icon for the machine state to be a miniature machine controller cover.
- Made the block/allow input section more interactive in order to better reflect the actual effect of these buttons.
- In import mode, it actually blocks the machine from outputting from that side.
* typos
I can't write to save myself sometimes
* Better text alignment
- Better text alignment
* fix typos
I swear I can't write to save myself.
---------
Co-authored-by: Martin Robertz <dream-master@gmx.net>
|
|
* Fix Algae Farm compost calculation
* Spotless
|
|
|
|
Add PA centrifuge and electrolysis recipe maps to recipe replacements
|
|
* add PA centrifuge recipe map to recipe replacements
* improve code
* update bs
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Correct PCB Factory Energy Hatch description
Changes the PCB factory description (the one seen when holding shift) which currently says "Energy Hatches: 1+"
I believe this is incorrect and that the correct description is 1-2 energy hatches or 1 TT energy hatch.
I believe the PCB factory uses this, which checks for 1-2 or 1 TT:
public boolean checkExoticAndNormalEnergyHatches() {
if (mExoticEnergyHatches.isEmpty() && mEnergyHatches.isEmpty()) {
return false;
}
if (!mExoticEnergyHatches.isEmpty()) {
if (!mEnergyHatches.isEmpty()) {
return false;
}
if (mExoticEnergyHatches.size() != 1) {
return false;
}
}
return mEnergyHatches.size() <= 2;
}
* gradlew spotlessApply
|
|
|
|
* Optimize isEmpty check
* rearrage
|
|
Add per fluid capacity to TFFT storage field tooltip
|
|
|
|
Allow max tier TFFT to complete with energy hatch
|
|
* Update dependencies.gradle
* Update build.gradle
* Use the new API
* Update dependencies.gradle
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Co-authored-by: Firenoo <49818773+firenoo@users.noreply.github.com>
|
|
|
|
|
|
When simulating an injection, if the stackSize > chest's capacity, it
causes a NPE when the internal chest is empty.
Also fixes a potential bug when void overflow is set; the chest should
return null in such a scenario regardless of simulation/modulation.
|
|
* Fix server crash with RecipeFilter
* Make client send filtered machines to server
* Use mUniqueIdentifier
|
|
|
|
|