iOS fixes

This commit is contained in:
Anuken
2018-07-17 14:15:43 -04:00
parent 6f6601d270
commit 946e60937d
5 changed files with 2 additions and 11 deletions

View File

@@ -33,10 +33,5 @@ public abstract class Decal extends TimedEntity implements BelowLiquidTrait, Dra
return groundEffectGroup;
}
@Override
public float fin() {
return time / lifetime();
}
abstract void drawDecal();
}

View File

@@ -134,9 +134,4 @@ public class ItemTransfer extends TimedEntity implements DrawTrait{
public EntityGroup targetGroup(){
return effectGroup;
}
@Override
public float fin(){
return time() / lifetime();
}
}