Skip to content

Commit

Permalink
Fixes incorrect reference to biomes description.
Browse files Browse the repository at this point in the history
  • Loading branch information
BONNe committed Mar 1, 2023
1 parent 7c79bff commit eb9cadb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ private PanelItem createButton(Action button)
protected PanelItem createElementButton(Biome biome)
{
List<String> description = new ArrayList<>();
description.add(this.user.getTranslationOrNothing(Constants.MATERIALS + biome.name() + ".description"));
description.add(this.user.getTranslationOrNothing(Constants.BIOMES + biome.name() + ".description"));

// Add empty line
if (!description.get(0).isEmpty())
Expand Down

0 comments on commit eb9cadb

Please sign in to comment.