
Updated commands Added in a ritual hologram --Alex's code Added a Total Stones tooltip to the ritual diviner Gave the Alchemy Relay a null bounding box Added localizations to the blocks that didn't have any
11 lines
364 B
Java
11 lines
364 B
Java
package WayofTime.alchemicalWizardry.common.achievements;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.inventory.IInventory;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.stats.Achievement;
|
|
|
|
public interface ICraftAchievement
|
|
{
|
|
Achievement getAchievementOnCraft(ItemStack stack, EntityPlayer player, IInventory matrix);
|
|
}
|