diff options
| author | Alkalus <Draknyte1@hotmail.com> | 2020-05-04 01:32:46 +0100 |
|---|---|---|
| committer | Alkalus <Draknyte1@hotmail.com> | 2020-05-04 01:32:46 +0100 |
| commit | 2b7ae2001ed8f49d2de8f88ef306426af60c279b (patch) | |
| tree | 954737087b6adcbb4b3b8f4f7d3464d2e0212b6f /src/Java/gtPlusPlus/core/item/materials | |
| parent | 3159aef00e7babcf8c5e1d574a738b6d2cac9e42 (diff) | |
| download | GT5-Unofficial-2b7ae2001ed8f49d2de8f88ef306426af60c279b.tar.gz GT5-Unofficial-2b7ae2001ed8f49d2de8f88ef306426af60c279b.tar.bz2 GT5-Unofficial-2b7ae2001ed8f49d2de8f88ef306426af60c279b.zip | |
$ Fixed handling of Giant Eggs.
$ Fixed obscure crash caused by Dingos.
$ Fixed handling of Spawn Eggs and entities registered to the global list.
$ Potentially fixed NEI not working correctly for GT++ recipe maps.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item/materials')
| -rw-r--r-- | src/Java/gtPlusPlus/core/item/materials/DustDecayable.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/item/materials/DustDecayable.java b/src/Java/gtPlusPlus/core/item/materials/DustDecayable.java index 9994c7d362..d42ac85012 100644 --- a/src/Java/gtPlusPlus/core/item/materials/DustDecayable.java +++ b/src/Java/gtPlusPlus/core/item/materials/DustDecayable.java @@ -64,7 +64,7 @@ public class DustDecayable extends BaseItemTickable { } boolean a1, a2; - a1 = this.getIsActive(world, iStack); + a1 = this.isTicking(world, iStack); a2 = tickItemTag(world, iStack); if (!a1 && !a2) { |
