Added getNewCopy() to Ritual to allow tiles to hold their own copy of a Ritual. Created caching in AreaDescriptor for faster BlockPos access.

This commit is contained in:
WayofTime 2015-12-31 08:01:39 -05:00
parent 69355f76fb
commit d7a96c061d
7 changed files with 72 additions and 14 deletions

View file

@ -84,4 +84,10 @@ public class RitualGreenGrove extends Ritual
return components;
}
@Override
public Ritual getNewCopy()
{
return new RitualGreenGrove();
}
}