Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
reobf committed Nov 24, 2024
1 parent a783112 commit 4d73e0b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/java/remoteio/common/item/ItemLocationChip.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,9 @@ public ItemLocationChip() {
public void addInformation(ItemStack stack, EntityPlayer player, List<String> list, boolean debug) {
DimensionalCoords coords = ItemLocationChip.getCoordinates(stack);
if (coords != null) {
if(DimensionManager.getWorld(coords.dimensionID) != null)
if (DimensionManager.getWorld(coords.dimensionID) != null)
list.add("Dimension: " + DimensionManager.getProvider(coords.dimensionID).getDimensionName());
else
list.add("Dimension: " + coords.dimensionID);
else list.add("Dimension: " + coords.dimensionID);
list.add("X: " + coords.x + " Y: " + coords.y + " Z: " + coords.z);
}
}
Expand Down

0 comments on commit 4d73e0b

Please sign in to comment.