This description was correct in the first place! Turns out it was the upgrading recipes' fault.

This commit is contained in:
Electroblob77
2020-04-17 23:16:48 +01:00
parent 50ad3655c9
commit a7b608a06e
2 changed files with 5 additions and 5 deletions
@@ -1007,7 +1007,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, including the {@link None} spell. */
/** Returns all registered spells, excluding the {@link None} spell. */
public static List<Spell> getAllSpells(){
return getSpells(s -> true);
}