Skip to content

Commit a62520e

Browse files
committed
slightly changed oulse calcualtion, should result in same numbers though
1 parent e1f8d82 commit a62520e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/gtreimagined/gt4r/reactor/components/adapters/FuelRodAdapter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public double getExplosionRadiusMultiplier() {
133133
}
134134

135135
private int getPulseCount() {
136-
int pulses = (1 + (this.getFuelRodCount() / 2)) * this.fuelRod.getFuelType().pulsesPerTick();
136+
int pulses = (1 + (this.getFuelRodCount() >> 1)) * this.fuelRod.getFuelType().pulsesPerTick();
137137

138138
for (var dir : InventoryDirection.values()) {
139139
int x2 = dir.offsetX(x);

0 commit comments

Comments
 (0)