mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
21 lines
436 B
Java
21 lines
436 B
Java
package com.hbm.main;
|
|
|
|
import com.hbm.items.ModItems;
|
|
|
|
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
|
|
import cpw.mods.fml.common.gameevent.PlayerEvent;
|
|
|
|
public class ModEventHandler
|
|
{
|
|
// Achievements
|
|
/*@SubscribeEvent
|
|
public void whenTitaniumSmeleted(PlayerEvent.ItemSmeltedEvent e)
|
|
{
|
|
if (e.smelting.getItem().equals(ModItems.ingot_titanium))
|
|
{
|
|
e.player.addStat(MainRegistry.achievementGetTitanium, 1);
|
|
}
|
|
}*/
|
|
|
|
}
|