diff --git a/src/main/java/electroblob/wizardry/spell/Possession.java b/src/main/java/electroblob/wizardry/spell/Possession.java index 79d2c6f6..d4e4dcc1 100644 --- a/src/main/java/electroblob/wizardry/spell/Possession.java +++ b/src/main/java/electroblob/wizardry/spell/Possession.java @@ -417,7 +417,7 @@ public class Possession extends SpellRay { /** Adds the given {@link BiConsumer} to the list of abilities. An ability is an entity-specific action or * effect that happens when a certain type of entity is possessed. For example, spiders can climb walls, endermen - * can pick up blocks, creepers explode, etc. Other mods may use this method to */ + * can pick up blocks, creepers explode, etc. Other mods may use this method to add their own possession abilities. */ public static void addAbility(Class entityType, BiConsumer ability){ abilities.put(entityType, ability); }