Skip to content

Commit

Permalink
Replace it properly
Browse files Browse the repository at this point in the history
  • Loading branch information
DSH105 committed Feb 27, 2014
1 parent de553d1 commit 1323eea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public ImageGenerator getGenerator(CommandSender sender, String key) {
if (this.URL_UNLOADED.get(key) != null) {
final UnloadedImageStorage data = this.URL_UNLOADED.get(key);
HoloAPI.getInstance().LOGGER.log(Level.INFO, "Loading custom URL image of key " + key + "...");
Lang.sendTo(sender, Lang.LOADING_URL_IMAGE.getValue().replace("%replace%", key));
Lang.sendTo(sender, Lang.LOADING_URL_IMAGE.getValue().replace("%key%", key));
final ImageGenerator generator = new ImageGenerator(key, data.getImagePath(), data.getImageHeight(), data.getCharType(), false, data.requiresBorder());
new BukkitRunnable() {
@Override
Expand Down

0 comments on commit 1323eea

Please sign in to comment.