mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
dagoth ur yaoi
This commit is contained in:
parent
6bfca4e1fe
commit
f2991e4518
12
changelog
12
changelog
@ -1,13 +1,5 @@
|
|||||||
## Changed
|
## Changed
|
||||||
* Opening the tool ability configuration menu is now its own keybind instead of using the copy tool's alt keybind + right click
|
* The DNT suit now has a damage threshold of 1,000
|
||||||
* Cycling though tool abilities is now a custom keybind (still right click by default)
|
|
||||||
* Removed legacy hardron cooler
|
|
||||||
* Removed 20hz transformers
|
|
||||||
* High-octane diesel is now called high-cetane diesel
|
|
||||||
|
|
||||||
## Fixed
|
## Fixed
|
||||||
* Fixed new chemical plant ports not initializing their proxies properly
|
* Chemical plant ports. For real this time.
|
||||||
* Fixed chunkloading entities immediately throwing away their loader ticket
|
|
||||||
* Fixed builder jetpack not resetting flight time properly
|
|
||||||
* Fixed new chemplant's ferric schrabidate recipe
|
|
||||||
* Fixed single reload guns reloading multiple rounds at once when having multiple valid ammo stacks
|
|
||||||
@ -184,6 +184,16 @@ public class TileEntityMachineChemicalPlant extends TileEntityMachineBase implem
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean canExtractItem(int i, ItemStack itemStack, int j) {
|
||||||
|
return i >= 7 && i <= 9;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int[] getAccessibleSlotsFromSide(int side) {
|
||||||
|
return new int[] {4, 5, 6, 7, 8, 9};
|
||||||
|
}
|
||||||
|
|
||||||
@Override public long getPower() { return power; }
|
@Override public long getPower() { return power; }
|
||||||
@Override public void setPower(long power) { this.power = power; }
|
@Override public void setPower(long power) { this.power = power; }
|
||||||
@Override public long getMaxPower() { return maxPower; }
|
@Override public long getMaxPower() { return maxPower; }
|
||||||
|
|||||||
@ -218,7 +218,7 @@ public class DamageResistanceHandler {
|
|||||||
registerSet(ModItems.dns_helmet, ModItems.dns_plate, ModItems.dns_legs, ModItems.dns_boots, new ResistanceStats()
|
registerSet(ModItems.dns_helmet, ModItems.dns_plate, ModItems.dns_legs, ModItems.dns_boots, new ResistanceStats()
|
||||||
.addCategory(CATEGORY_EXPLOSION, 100F, 0.99F)
|
.addCategory(CATEGORY_EXPLOSION, 100F, 0.99F)
|
||||||
.addCategory(CATEGORY_FIRE, 0F, 1F)
|
.addCategory(CATEGORY_FIRE, 0F, 1F)
|
||||||
.setOther(100F, 1F));
|
.setOther(1000F, 1F));
|
||||||
registerSet(ModItems.taurun_helmet, ModItems.taurun_plate, ModItems.taurun_legs, ModItems.taurun_boots, new ResistanceStats()
|
registerSet(ModItems.taurun_helmet, ModItems.taurun_plate, ModItems.taurun_legs, ModItems.taurun_boots, new ResistanceStats()
|
||||||
.addCategory(CATEGORY_PROJECTILE, 2F, 0.15F)
|
.addCategory(CATEGORY_PROJECTILE, 2F, 0.15F)
|
||||||
.addCategory(CATEGORY_FIRE, 0F, 0.25F)
|
.addCategory(CATEGORY_FIRE, 0F, 0.25F)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user