Finished fixing issues in the rituals. Added an initial system for setting a boundary for an effect in a ritual.
This commit is contained in:
parent
27fa98b3cd
commit
e5eddd6c45
8 changed files with 431 additions and 224 deletions
|
@ -0,0 +1,18 @@
|
|||
package WayofTime.bloodmagic.api.ritual;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import net.minecraft.util.AxisAlignedBB;
|
||||
import net.minecraft.util.BlockPos;
|
||||
|
||||
public class AreaDescriptor {
|
||||
|
||||
public List<BlockPos> getContainedPositions() {
|
||||
return new ArrayList();
|
||||
}
|
||||
|
||||
public AxisAlignedBB getAABB() {
|
||||
return null;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue