Fix to Full Stomach ritual, adding new system for summoning registry
This commit is contained in:
parent
3360a4d85c
commit
dc1357739b
15 changed files with 270 additions and 249 deletions
|
@ -5,16 +5,16 @@ import net.minecraft.world.World;
|
|||
|
||||
public abstract class SummoningHelper
|
||||
{
|
||||
protected int id;
|
||||
protected String id;
|
||||
|
||||
public SummoningHelper(int id)
|
||||
public SummoningHelper(String id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public abstract EntityLivingBase getEntity(World worldObj);
|
||||
|
||||
public int getSummoningHelperID()
|
||||
public String getSummoningHelperID()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue