add flight time (#62)

This commit is contained in:
hyperdefined
2024-08-29 00:10:01 -04:00
parent e8ab578eef
commit fb0d179d37
6 changed files with 136 additions and 13 deletions

View File

@@ -171,6 +171,9 @@ public class ConfigTools {
if (lore.contains("{arrows}")) {
lore = lore.replace("{arrows}", "");
}
if (lore.contains("{time}")) {
lore = lore.replace("{time}", "");
}
}
return lore;
}