Skip to content

Commit

Permalink
Correct grass mappings, fixes #7
Browse files Browse the repository at this point in the history
  • Loading branch information
PikaMug committed Jun 22, 2020
1 parent fc8f943 commit 0b47b91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/me/pikamug/localelib/LocaleKeys.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ public static LinkedHashMap<String, String> getBlockKeys() {
keys.put("LEAVES_2.0", "tile.leaves.acacia.name");
keys.put("LEAVES2.1", "tile.leaves.big_oak.name");
keys.put("LONG_GRASS", "tile.tallgrass.name");
keys.put("LONG_GRASS.2", "tile.tallgrass.shrub.name");
keys.put("LONG_GRASS.0", "tile.tallgrass.grass.name");
keys.put("LONG_GRASS.1", "tile.tallgrass.fern.name");
keys.put("LONG_GRASS.0", "tile.tallgrass.shrub.name");
keys.put("LONG_GRASS.1", "tile.tallgrass.grass.name");
keys.put("LONG_GRASS.2", "tile.tallgrass.fern.name");
keys.put("SPONGE", "tile.sponge.dry.name");
keys.put("SPONGE.1", "tile.sponge.wet.name");
keys.put("GLASS", "tile.glass.name");
Expand Down

0 comments on commit 0b47b91

Please sign in to comment.