use of micdoodle8.mods.galacticraft.planets.mars.inventory.InventorySlimeling in project Galacticraft by micdoodle8.
the class MFRSpawnHandlerSlimeling method onMobExactSpawn.
// Prevent dupe of slimeling inventory by exact copy spawns
// (similar to what MFR does for vanilla donkeys)
@Override
public void onMobExactSpawn(EntityLivingBase entity) {
EntitySlimeling ent = (EntitySlimeling) entity;
ent.slimelingInventory = new InventorySlimeling(ent);
}
Aggregations