OSDN Git Service

いろいろした
[chemicraft/chemicraft.git] / common / pcc / chemicraft / base / entity / EntityDust.java
index 3880c23..cf9e67d 100644 (file)
@@ -5,6 +5,11 @@ import net.minecraft.nbt.NBTTagCompound;
 import net.minecraft.util.MathHelper;
 import net.minecraft.world.World;
 
+/**
+ * 粉塵です。<br>
+ * 時間差で爆発します。
+ * @author mozipi,ponkotate
+ */
 public class EntityDust extends Entity {
 
        private final float explodeSize = 2.0F;
@@ -34,7 +39,7 @@ public class EntityDust extends Entity {
                                this.rad += 0.5;
                                if (this.deadDelay % 4 == 0) {
                                        this.explode(this.rad, false);
-                               } else if (this.deadDelay % 6 == 0){
+                               } else if (this.deadDelay % 6 == 0) {
                                        this.explode(this.rad, true);
                                }
                        } else {