Skip to content

Commit

Permalink
Fix Better Tooltips with suspicious stew (MeteorDevelopment#4291)
Browse files Browse the repository at this point in the history
  • Loading branch information
DAMcraft authored and tyrannus00 committed Apr 25, 2024
1 parent 38a1cb6 commit 8f64dba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ private void appendTooltip(ItemStackTooltipEvent event) {
NbtCompound tag = event.itemStack.getNbt();

if (tag != null) {
NbtList effects = tag.getList("Effects", 10);
NbtList effects = tag.getList("effects", 10);

if (effects != null) {
for (int i = 0; i < effects.size(); i++) {
Expand Down

0 comments on commit 8f64dba

Please sign in to comment.