aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/growthcraft/fishtrap/Growthcraft_New.java
blob: 5b744623c77ef707f0e9cd5fadeb229c085b0120 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package gtPlusPlus.xmod.growthcraft.fishtrap;

import growthcraft.api.fishtrap.FishTrapEntry;
import growthcraft.api.fishtrap.FishTrapRegistry;
import net.minecraft.item.ItemStack;

public class Growthcraft_New {

	public static void addTrapJunk(ItemStack loot, int lootChance){
	    FishTrapRegistry.instance().addTrapJunk(new FishTrapEntry(loot, lootChance));

	}

	public static void addTrapTreasure(ItemStack loot, int lootChance){
	    FishTrapRegistry.instance().addTrapTreasure(new FishTrapEntry(loot, lootChance));

	}

	public static void addTrapFish(ItemStack loot, int lootChance){
		FishTrapRegistry.instance().addTrapFish(new FishTrapEntry(loot, lootChance));

	}

}