blob: 9919a3ff1e29cf573dcb5c96725e9ca553436c19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package darkknight.jewelrycraft.events;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
import cpw.mods.fml.common.gameevent.PlayerEvent;
/**
* @author Sorin
*
*/
public class EventCommonHandler
{
@SubscribeEvent
public void onItemCrafted(PlayerEvent.ItemCraftedEvent event)
{
// System.out.println(event.crafting + " " + event.craftMatrix.getInventoryName());
}
}
|