Skip to content

Commit

Permalink
Correct translation of Lapis blocks, fixes #16
Browse files Browse the repository at this point in the history
  • Loading branch information
PikaMug committed Jul 26, 2021
1 parent 398781f commit 6053dc6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>me.pikamug.localelib</groupId>
<artifactId>LocaleLib</artifactId>
<version>2.1</version>
<version>2.2</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/me/pikamug/localelib/LocaleKeys.java
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,8 @@ public static LinkedHashMap<String, String> getBlockKeys() {
keys.put("WOOL.2", "tile.cloth.magenta.name");
keys.put("WOOL.1", "tile.cloth.orange.name");
keys.put("WOOL.0", "tile.cloth.white.name");
keys.put("LAPIS_BLOCK", "tile.oreLapis.name");
keys.put("LAPIS_ORE", "tile.blockLapis.name");
keys.put("LAPIS_ORE", "tile.oreLapis.name");
keys.put("LAPIS_BLOCK", "tile.blockLapis.name");
keys.put("DISPENSER", "tile.dispenser.name");
keys.put("DROPPER", "tile.dropper.name");
keys.put("NOTE_BLOCK", "tile.musicBlock.name");
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: LocaleLib
main: me.pikamug.localelib.LocaleLib
version: 2.1
version: 2.2
api-version: 1.13
description: Show translated names of items, entities & more in client's language
website: https://www.spigotmc.org/resources/quests.3711/
Expand Down

0 comments on commit 6053dc6

Please sign in to comment.