Lots of balancing/tweaks
This commit is contained in:
@@ -260,7 +260,7 @@ abstract class UnitComp implements Healthc, Physicsc, Hitboxc, Statusc, Teamc, I
|
||||
@Override
|
||||
@Replace
|
||||
public boolean collides(Hitboxc other){
|
||||
return type.hittable;
|
||||
return hittable();
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -355,6 +355,14 @@ abstract class UnitComp implements Healthc, Physicsc, Hitboxc, Statusc, Teamc, I
|
||||
}
|
||||
}
|
||||
|
||||
public boolean targetable(){
|
||||
return type.targetable;
|
||||
}
|
||||
|
||||
public boolean hittable(){
|
||||
return type.hittable;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void afterSync(){
|
||||
//set up type info after reading
|
||||
|
||||
Reference in New Issue
Block a user