Fixed silly dupe bug with the Zephyr ritual. (#988)

This commit is contained in:
WayofTime 2016-11-29 22:06:43 -05:00
parent efb3077fdf
commit 89bd91197d
2 changed files with 6 additions and 0 deletions

View file

@ -2,6 +2,7 @@
Version 2.1.0-68
------------------------------------------------------
- Fixed Ritual of Regeneration's text
- Fixed silly dupe bug with the Zephyr ritual.
------------------------------------------------------
Version 2.1.0-67

View file

@ -78,6 +78,11 @@ public class RitualZephyr extends Ritual
entityItem.getEntityItem().stackSize = newStack.stackSize;
}
if (newStack == null)
{
entityItem.setDead();
}
}
}