Skip to content

Commit

Permalink
3.4.9
Browse files Browse the repository at this point in the history
  • Loading branch information
danorris709 committed Sep 11, 2022
1 parent f7e6c4f commit e7f0092
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ subprojects {
apply plugin: 'java'

group = 'com.envyful.api'
version = '3.4.8'
version = '3.4.9'

tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public static String replacePokemonPlaceholders(String line, Pokemon pokemon, Sp

line = line
.replace("%nickname%", pokemon.getDisplayName())
.replace("%held_item%", pokemon.getHeldItem().getDisplayName().getString())
.replace("%held_item%", pokemon.getHeldItem().getHoverName().getString())
.replace("%palette%", pokemon.getPalette().getLocalizedName())
.replace("%species_name%", pokemon.getSpecies().getLocalizedName())
.replace("%level%", pokemon.getPokemonLevel() + "")
Expand Down

0 comments on commit e7f0092

Please sign in to comment.