Skip to content

Commit 7cf300f

Browse files
committed
fix some registry types being not defaulted
1 parent 306dd58 commit 7cf300f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/spongepowered/api/registry/RegistryTypes.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ public final class RegistryTypes {
373373

374374
public static final DefaultedRegistryType<EquipmentType> EQUIPMENT_TYPE = RegistryTypes.spongeKeyInGame("equipment_type");
375375

376-
public static final RegistryType<ExplosionBlockInteraction> EXPLOSION_BLOCK_INTERACTION = RegistryTypes.spongeKeyInGame("explosion_block_interaction");
376+
public static final DefaultedRegistryType<ExplosionBlockInteraction> EXPLOSION_BLOCK_INTERACTION = RegistryTypes.spongeKeyInGame("explosion_block_interaction");
377377

378378
public static final DefaultedRegistryType<FireworkShape> FIREWORK_SHAPE = RegistryTypes.spongeKeyInGame("firework_shape");
379379

@@ -517,7 +517,7 @@ public final class RegistryTypes {
517517

518518
public static final DefaultedRegistryType<Tilt> TILT = RegistryTypes.spongeKeyInGame("tilt");
519519

520-
public static final RegistryType<VaultState> VAULT_STATE = RegistryTypes.spongeKeyInGame("vault_state");
520+
public static final DefaultedRegistryType<VaultState> VAULT_STATE = RegistryTypes.spongeKeyInGame("vault_state");
521521

522522
public static final DefaultedRegistryType<Visibility> VISIBILITY = RegistryTypes.spongeKeyInGame("visibility");
523523

0 commit comments

Comments
 (0)