Skip to content

Commit

Permalink
Tweak bumpable blocks (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugman76 committed Jul 21, 2024
2 parents 3dd6b5b + 8fb6ed9 commit 8ae61d8
Show file tree
Hide file tree
Showing 16 changed files with 607 additions and 297 deletions.
4 changes: 2 additions & 2 deletions src/main/java/fr/hugman/mubble/MubbleClient.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package fr.hugman.mubble;

import fr.hugman.mubble.client.gui.screen.BumpableBlockScreen;
import fr.hugman.mubble.client.gui.screen.BumpableScreen;
import fr.hugman.mubble.client.render.BumpableBlockEntityRenderer;
import fr.hugman.mubble.registry.SuperMario;
import net.fabricmc.api.ClientModInitializer;
Expand All @@ -18,7 +18,7 @@ public void onInitializeClient() {
BlockRenderLayerMap.INSTANCE.putBlock(SuperMario.RED_BEEP_BLOCK, RenderLayer.getCutout());
BlockRenderLayerMap.INSTANCE.putBlock(SuperMario.BLUE_BEEP_BLOCK, RenderLayer.getCutout());

HandledScreens.register(SuperMario.BUMPABLE_BLOCK_SCREEN_HANDLER, BumpableBlockScreen::new);
HandledScreens.register(SuperMario.BUMPABLE_BLOCK_SCREEN_HANDLER, BumpableScreen::new);
BlockEntityRendererFactories.register(SuperMario.BUMPABLE_BLOCK_ENTITY_TYPE, BumpableBlockEntityRenderer::new);
}
}
Loading

0 comments on commit 8ae61d8

Please sign in to comment.