Skip to content

Commit

Permalink
Fix collision registry loading
Browse files Browse the repository at this point in the history
  • Loading branch information
Camotoy committed Oct 28, 2024
1 parent 8f7a0d0 commit 3f60db1
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,6 @@ public static void load() {
CUSTOM_BLOCK_ITEM_OVERRIDES.load();
EXTENDED_COLLISION_BOXES.load();
CUSTOM_SKULLS.load();

COLLISIONS.load();
}

public static void populate() {
Expand All @@ -156,6 +154,7 @@ public static void populate() {
CustomBlockRegistryPopulator.populate(CustomBlockRegistryPopulator.Stage.DEFINITION);
CustomBlockRegistryPopulator.populate(CustomBlockRegistryPopulator.Stage.NON_VANILLA_REGISTRATION);
BlockRegistryPopulator.populate(BlockRegistryPopulator.Stage.INIT_JAVA);
COLLISIONS.load();
CustomBlockRegistryPopulator.populate(CustomBlockRegistryPopulator.Stage.VANILLA_REGISTRATION);
CustomBlockRegistryPopulator.populate(CustomBlockRegistryPopulator.Stage.CUSTOM_REGISTRATION);
BlockRegistryPopulator.populate(BlockRegistryPopulator.Stage.INIT_BEDROCK);
Expand Down

0 comments on commit 3f60db1

Please sign in to comment.