fix fishing rods not updating lore correctly

This commit is contained in:
hyperdefined
2022-02-11 14:03:51 -05:00
parent 77b1be62d4
commit d23c2446dd

View File

@@ -235,6 +235,9 @@ public final class ToolStats extends JavaPlugin {
if (lore.contains("{damage}")) { if (lore.contains("{damage}")) {
lore = lore.replace("{damage}", ""); lore = lore.replace("{damage}", "");
} }
if (lore.contains("{fish}")) {
lore = lore.replace("{fish}", "");
}
} }
return lore; return lore;
} }