Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
BlockEiko committed May 18, 2024
1 parent 2d31d26 commit fa13ab6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion fabric/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## Changelog
- re-upload
- port to 1.20.6
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ maven_group=org.thinkingstudio.obsidianui
fabric_loader_version=0.15.11
fabric_api_version=0.98.0+1.20.6

neoforge_version=20.6.63-beta
neoforge_version=20.6.70-beta

modrinth_id=E0L8mfJZ
curseforge_id=684718
2 changes: 1 addition & 1 deletion neoforge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## Changelog
- re-upload
- port to 1.20.6
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ public static void registerEvents(IEventBus modEventBus) {
IEventBus forgeEventBus = NeoForge.EVENT_BUS;

forgeEventBus.addListener(EventPriority.HIGHEST, RenderGuiEvent.Post.class, event -> {
DrawContext context = event.getGuiGraphics();
DrawContext drawContext = event.getGuiGraphics();
float tickDelta = event.getPartialTick();

HudManager.HUDS.forEach((id, hud) -> {
if (hud.isEnabled() && hud.isVisible())
hud.render(context, tickDelta);
hud.render(drawContext, tickDelta);
});
});
forgeEventBus.addListener(EventPriority.HIGHEST, ClientTickEvent.class, event -> {
Expand Down

0 comments on commit fa13ab6

Please sign in to comment.