Skip to content

Commit

Permalink
Removed a system out call.
Browse files Browse the repository at this point in the history
  • Loading branch information
ImCodist committed Jan 1, 2024
1 parent dffa0c5 commit 8247aae
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/java/xyz/imcodist/ui/ActionEditorUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,6 @@ private Integer getCustomModelData(ItemStack item) {
if (item.getNbt() != null) {
NbtElement nbtElement = item.getNbt().get("CustomModelData");
if (nbtElement != null) {
System.out.println(nbtElement);
existingCustomModelData = Integer.parseInt(nbtElement.toString());
}
}
Expand Down

0 comments on commit 8247aae

Please sign in to comment.