Add modid to subscriber annotations

(cherry picked from commit 7cac007)
This commit is contained in:
Nicholas Ignoffo 2017-10-13 17:41:54 -07:00 committed by Nicholas Ignoffo
parent 8a4117106d
commit 3536a25cc3
8 changed files with 10 additions and 8 deletions

View file

@ -8,7 +8,7 @@ import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
@Config(modid = BloodMagic.MODID, name = BloodMagic.MODID + "/" + BloodMagic.MODID, category = "")
@Mod.EventBusSubscriber
@Mod.EventBusSubscriber(modid = BloodMagic.MODID)
public class ConfigHandler {
@Config.Comment({ "Blacklist options for various features" })

View file

@ -1,5 +1,6 @@
package WayofTime.bloodmagic.potion;
import WayofTime.bloodmagic.BloodMagic;
import WayofTime.bloodmagic.api.event.SacrificeKnifeUsedEvent;
import WayofTime.bloodmagic.core.RegistrarBloodMagic;
import net.minecraft.entity.Entity;
@ -18,7 +19,7 @@ import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import java.util.List;
@Mod.EventBusSubscriber
@Mod.EventBusSubscriber(modid = BloodMagic.MODID)
public class PotionEventHandlers {
@SubscribeEvent

View file

@ -50,7 +50,7 @@ import org.lwjgl.opengl.GL11;
import java.util.*;
@Mod.EventBusSubscriber
@Mod.EventBusSubscriber(modid = BloodMagic.MODID)
@SideOnly(Side.CLIENT)
public class ClientHandler {
// Quick toggle for error suppression. Set to false if you wish to hide model errors.

View file

@ -26,7 +26,7 @@ import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import java.util.ArrayList;
import java.util.List;
@Mod.EventBusSubscriber
@Mod.EventBusSubscriber(modid = BloodMagic.MODID)
public class CraftingHandler {
// Sets the uses of crafted Inscription Tools to 10

View file

@ -85,7 +85,7 @@ import java.util.List;
import java.util.Map;
import java.util.Random;
@Mod.EventBusSubscriber
@Mod.EventBusSubscriber(modid = BloodMagic.MODID)
public class GenericHandler {
public static Map<EntityPlayer, Double> bounceMap = new HashMap<EntityPlayer, Double>();
public static Map<EntityPlayer, Integer> filledHandMap = new HashMap<EntityPlayer, Integer>();

View file

@ -39,7 +39,7 @@ import net.minecraftforge.fml.common.eventhandler.Event;
import net.minecraftforge.fml.common.eventhandler.EventPriority;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
@Mod.EventBusSubscriber
@Mod.EventBusSubscriber(modid = BloodMagic.MODID)
public class LivingArmourHandler {
@SubscribeEvent

View file

@ -27,7 +27,7 @@ import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.eventhandler.EventPriority;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
@Mod.EventBusSubscriber
@Mod.EventBusSubscriber(modid = BloodMagic.MODID)
public class StatTrackerHandler {
private static float lastPlayerSwingStrength = 0;

View file

@ -1,5 +1,6 @@
package WayofTime.bloodmagic.util.handler.event;
import WayofTime.bloodmagic.BloodMagic;
import WayofTime.bloodmagic.api.soul.*;
import WayofTime.bloodmagic.core.RegistrarBloodMagic;
import WayofTime.bloodmagic.core.RegistrarBloodMagicItems;
@ -33,7 +34,7 @@ import java.util.HashMap;
import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;
@Mod.EventBusSubscriber
@Mod.EventBusSubscriber(modid = BloodMagic.MODID)
public class WillHandler {
private static final HashMap<Integer, Integer> SERVER_TICKS = new HashMap<Integer, Integer>();