This commit is contained in:
Anuken
2020-09-13 10:02:10 -04:00
parent 1fd98fe07c
commit bab43859f5
3 changed files with 5 additions and 8 deletions

View File

@@ -1,7 +1,6 @@
package mindustry.entities.comp;
import arc.graphics.*;
import arc.math.*;
import arc.struct.*;
import arc.util.*;
import arc.util.pooling.*;
@@ -24,11 +23,6 @@ abstract class StatusComp implements Posc, Flyingc{
@Import UnitType type;
/** @return damage taken based on status armor multipliers */
float getShieldDamage(float amount){
return amount * Mathf.clamp(1f - armorMultiplier / 100f);
}
/** Apply a status effect for 1 tick (for permanent effects) **/
void apply(StatusEffect effect){
apply(effect, 1);