added damage done system

This commit is contained in:
hyperdefined
2025-03-30 20:33:30 -04:00
parent e37048ff01
commit d0199a85e0
10 changed files with 460 additions and 128 deletions

View File

@@ -333,6 +333,9 @@ public class ItemChecker {
if (container.has(toolStats.flightTime)) {
tokens.add("flight-time");
}
if (container.has(toolStats.damageDone)) {
tokens.add("damage-done");
}
if (tokens.isEmpty()) {
return null;
}