[frantic autism music starts playing]

This commit is contained in:
Bob 2024-04-21 18:13:25 +02:00
parent 13aaa627b2
commit 5934a17d90
3 changed files with 12 additions and 2 deletions

View File

@ -4,12 +4,14 @@
[NTM on CurseForge](https://minecraft.curseforge.com/projects/hbms-nuclear-tech-mod?gameCategorySlug=mc-mods&projectID=235439)
[Official NTM Wiki](https://nucleartech.wiki/wiki/Main_Page)
**This is for 1.7.10!** For 1.12, check out these projects:
* NTM Reloaded: https://github.com/TheOriginalGolem/Hbm-s-Nuclear-Tech-GIT/releases
* NTM Extended Edition (Alcater): https://github.com/Alcatergit/Hbm-s-Nuclear-Tech-GIT/releases
For 1.18, try Martin's remake: https://github.com/MartinTheDragon/Nuclear-Tech-Mod-Remake/releases
For 1.18, try Martin's remake: https://codeberg.org/MartinTheDragon/Nuclear-Tech-Mod-Remake/releases
## Downloading pre-compiled versions from GitHub

View File

@ -10,4 +10,8 @@
## Fixed
* Limited assembler input to up to 10 attempts per ingredient, fixing a rare issue where the assembler freezes the server when pulling items
* Fixed fallout effects not loading chunks
* Fixed RBMK steam channel recycling recipe
* Fixed RBMK steam channel recycling recipe
* Rewrote the transfer part of the power system *again*
* The current system is a hybrid of the previous transfer code and the old system
* While a little bit slower than the previous transfer code, it is still much faster than the old system
* This should fix issues caused by order (as order is now entirely irrelevant, just like with the old system) as well as issues caused by buffers wasting transfer capacity doing nothing

View File

@ -171,6 +171,8 @@ public class PowerNetMK2 {
toTransfer -= energyUsed;
}
this.energyTracker += energyUsed;
for(Pair<IEnergyProviderMK2, Long> entry : providers) {
double weight = (double) entry.getValue() / (double) powerAvailable;
@ -330,6 +332,8 @@ public class PowerNetMK2 {
toTransfer -= energyUsed;
}
this.energyTracker += energyUsed;
return power - energyUsed;
}