Skip to content

Commit

Permalink
Merge branch 'navigator-api-migration' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Caedis committed Jul 14, 2024
2 parents 9351606 + 12e894a commit 42a5823
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.sinthoras.visualprospecting.integration.journeymap.drawsteps;

import java.awt.geom.Point2D;
import java.util.ArrayList;
import java.util.List;

import net.minecraft.client.gui.FontRenderer;
Expand Down Expand Up @@ -51,7 +50,8 @@ public void getTooltip(List<String> tooltip) {
}

@Override
public void drawCustomTooltip(FontRenderer fontRenderer, int mouseX, int mouseY, int displayWidth, int displayHeight) {}
public void drawCustomTooltip(FontRenderer fontRenderer, int mouseX, int mouseY, int displayWidth,
int displayHeight) {}

@Override
public boolean isMouseOver(int mouseX, int mouseY) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ public IWaypointAndLocationProvider getLocationProvider() {
return thaumcraftNodeLocation;
}

public void drawCustomTooltip(FontRenderer fontRenderer, int mouseX, int mouseY, int displayWidth, int displayHeight) {
public void drawCustomTooltip(FontRenderer fontRenderer, int mouseX, int mouseY, int displayWidth,
int displayHeight) {
final boolean isWaypoint = thaumcraftNodeLocation.isActiveAsWaypoint();
final String activeWaypointHint = thaumcraftNodeLocation.getActiveWaypointHint();
final String title = thaumcraftNodeLocation.getTitle();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.sinthoras.visualprospecting.integration.xaeroworldmap.rendersteps;

import java.util.ArrayList;
import java.util.List;

import javax.annotation.Nullable;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.sinthoras.visualprospecting.integration.xaeroworldmap.rendersteps;

import java.util.List;

import javax.annotation.Nullable;

import net.minecraft.client.gui.GuiScreen;
Expand All @@ -18,8 +20,6 @@
import thaumcraft.api.aspects.Aspect;
import thaumcraft.client.lib.UtilsFX;

import java.util.List;

public class ThaumcraftNodeRenderStep implements XaeroInteractableStep {

private static final ResourceLocation markedTextureLocation = new ResourceLocation(
Expand Down

0 comments on commit 42a5823

Please sign in to comment.