Added getWorld() override for BuildCraft ASM
This commit is contained in:
parent
b5a1f82db6
commit
022e0d04af
1 changed files with 6 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
package resonantinduction.core.base;
|
||||
|
||||
import net.minecraft.world.World;
|
||||
import codechicken.multipart.TMultiPart;
|
||||
|
||||
public abstract class PartAdvanced extends TMultiPart
|
||||
|
@ -28,4 +29,9 @@ public abstract class PartAdvanced extends TMultiPart
|
|||
public void initiate()
|
||||
{
|
||||
}
|
||||
|
||||
public World getWorld()
|
||||
{
|
||||
return world();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue