Hmmm I hope this incorrect description hasn't resulted in any bugs :/

This commit is contained in:
Electroblob77
2020-04-17 21:38:21 +01:00
parent d93b9a6765
commit 4c024f9e46
@@ -996,7 +996,7 @@ public abstract class Spell extends IForgeRegistryEntry.Impl<Spell> 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<Spell> getAllSpells(){
return getSpells(s -> true);
}