v2.3.0: fixed boss HP bar retaining bleed value when not assigned

This commit is contained in:
Evan Debenham
2023-12-17 16:53:22 -05:00
parent a1ffee3949
commit 8b96d29e8a

View File

@@ -219,7 +219,7 @@ public class BossHealthBar extends Component {
}
public static boolean isBleeding(){
return bleeding;
return isAssigned() && bleeding;
}
}