Skip to content

Commit

Permalink
Waila: Add item data to basin casting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunstrike committed Dec 24, 2013
1 parent 27277a6 commit bcd73a0
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -38,7 +38,11 @@ public List<String> getWailaBody(ItemStack itemStack, List<String> currenttip, I
}
else
{
currenttip.add("§oEmpty"); // "§o" == Italics
if (te.getStackInSlot(0) != null) {
currenttip.add("Contains: " + te.getStackInSlot(0).getDisplayName());
} else {
currenttip.add("§oEmpty"); // "§o" == Italics
}
}
}
return currenttip;
Expand Down

0 comments on commit bcd73a0

Please sign in to comment.