From fbf8e7155c83902fd93feeaad63f30a9620de29d Mon Sep 17 00:00:00 2001 From: Electroblob77 <35599699+Electroblob77@users.noreply.github.com> Date: Sat, 20 Jun 2020 21:50:22 +0100 Subject: [PATCH] Cleanup --- src/main/java/electroblob/wizardry/spell/Spell.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/electroblob/wizardry/spell/Spell.java b/src/main/java/electroblob/wizardry/spell/Spell.java index fed061cf..2d1fa98a 100644 --- a/src/main/java/electroblob/wizardry/spell/Spell.java +++ b/src/main/java/electroblob/wizardry/spell/Spell.java @@ -185,6 +185,7 @@ public abstract class Spell extends IForgeRegistryEntry.Impl implements C * unlocalised name will be a resource location with the format [modid]:[name]. * @param action The vanilla usage action to be displayed when casting this spell. * @param isContinuous Whether this spell is continuous, meaning you cast it for a length of time by holding the + * use item button. */ Spell(String name, EnumAction action, boolean isContinuous){ this(Wizardry.MODID, name, action, isContinuous); @@ -199,6 +200,7 @@ public abstract class Spell extends IForgeRegistryEntry.Impl implements C * file. The spell's unlocalised name will be a resource location with the format [modid]:[name]. * @param action The vanilla usage action to be displayed when casting this spell (see {@link}EnumAction) * @param isContinuous Whether this spell is continuous, meaning you cast it for a length of time by holding the + * use item button. */ public Spell(String modID, String name, EnumAction action, boolean isContinuous){ this.setRegistryName(modID, name);