diff --git a/src/main/java/electroblob/wizardry/spell/Spell.java b/src/main/java/electroblob/wizardry/spell/Spell.java index 62d31b67..ffac262b 100644 --- a/src/main/java/electroblob/wizardry/spell/Spell.java +++ b/src/main/java/electroblob/wizardry/spell/Spell.java @@ -996,7 +996,7 @@ public abstract class Spell extends IForgeRegistryEntry.Impl implements C return registry.getValuesCollection().stream().filter(filter.and(s -> s != Spells.none)).collect(Collectors.toList()); } - /** Returns all registered spells, except the {@link None} spell. */ + /** Returns all registered spells, including the {@link None} spell. */ public static List getAllSpells(){ return getSpells(s -> true); }