Skip to content

Commit

Permalink
Fix PartP2PGT5Power.java carelessness (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
MuXiu1997 authored Apr 29, 2022
1 parent 214a762 commit 05b39b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/appeng/parts/p2p/PartP2PGT5Power.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public boolean onPartActivate(EntityPlayer player, Vec3 pos) {
inputLoc = "no input";
} else {
TileEntity te = input.getHost().getTile();
inputLoc = "[" + te.getWorldObj().provider.dimensionId + "](" + te.xCoord + ", " + te.zCoord + ", " + te.zCoord + ")";
inputLoc = "[" + te.getWorldObj().provider.dimensionId + "](" + te.xCoord + ", " + te.yCoord + ", " + te.zCoord + ")";
}

player.addChatMessage(chatComponent("------", ""));
Expand Down

0 comments on commit 05b39b4

Please sign in to comment.