Slowed down cloud speed

Blast ring speed now kind of corresponds to block destruction speed...
This commit is contained in:
grangerave 2017-12-02 20:19:53 -06:00
parent 4237435a09
commit 95e89df417

View File

@ -57,14 +57,14 @@ public class EntityNukeCloudSmall extends Entity {
this.age = 0; this.age = 0;
this.setDead(); this.setDead();
} }
ring += 0.1F; ring += 0.03F;
if(age < 150) if(age < 150)
{ {
height = -60F + ((age - 100) * 60 / 50); height = -60F + ((age - 100) * 60 / 50);
if(scale < 1.5) if(scale < 1.5)
{ {
scale += 0.02; scale += 0.006f;
} }
} }