mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-23 04:08:34 +01:00
make over- and underflow create another spot
This commit is contained in:
parent
5fcd096a99
commit
656a76980b
1 changed files with 4 additions and 3 deletions
|
@ -61,8 +61,9 @@ public class AuraChunk implements IAuraChunk {
|
||||||
return 0;
|
return 0;
|
||||||
MutableInt spot = this.getActualDrainSpot(pos, true);
|
MutableInt spot = this.getActualDrainSpot(pos, true);
|
||||||
int curr = spot.intValue();
|
int curr = spot.intValue();
|
||||||
if (curr < 0 && curr - amount > 0) // Underflow protection
|
if (curr < 0 && curr - amount > 0) { // Underflow protection
|
||||||
return amount;
|
return this.drainAura(pos.up(), amount, aimForZero, simulate);
|
||||||
|
}
|
||||||
if (aimForZero) {
|
if (aimForZero) {
|
||||||
if (curr > 0 && curr - amount < 0)
|
if (curr > 0 && curr - amount < 0)
|
||||||
amount = curr;
|
amount = curr;
|
||||||
|
@ -88,7 +89,7 @@ public class AuraChunk implements IAuraChunk {
|
||||||
MutableInt spot = this.getActualDrainSpot(pos, true);
|
MutableInt spot = this.getActualDrainSpot(pos, true);
|
||||||
int curr = spot.intValue();
|
int curr = spot.intValue();
|
||||||
if (curr > 0 && curr + amount < 0) // Overflow protection
|
if (curr > 0 && curr + amount < 0) // Overflow protection
|
||||||
return amount;
|
return this.storeAura(pos.up(), amount, aimForZero, simulate);
|
||||||
if (aimForZero) {
|
if (aimForZero) {
|
||||||
if (curr < 0 && curr + amount > 0) {
|
if (curr < 0 && curr + amount > 0) {
|
||||||
amount = -curr;
|
amount = -curr;
|
||||||
|
|
Loading…
Reference in a new issue