Add celestial smite spell

This commit is contained in:
Electroblob77
2020-10-18 01:17:31 +01:00
parent d6f30d6519
commit f9432c7c05
7 changed files with 99 additions and 2 deletions
@@ -255,6 +255,7 @@ public final class Spells {
public static final Spell firestorm = placeholder();
public static final Spell zombie_apocalypse = placeholder();
public static final Spell boulder = placeholder();
public static final Spell celestial_smite = placeholder();
@SubscribeEvent
public static void register(RegistryEvent.Register<Spell> event){
@@ -472,6 +473,7 @@ public final class Spells {
registry.register(new Firestorm());
registry.register(new ZombieApocalypse());
registry.register(new Boulder());
registry.register(new CelestialSmite());
}