Hbm-s-Nuclear-Tech-GIT/com/hbm/entity/logic/EntityEnvirEffectRad.java

16 lines
303 B
Java

package com.hbm.entity.logic;
import net.minecraft.world.World;
public class EntityEnvirEffectRad extends EntityEnvirEffect {
public EntityEnvirEffectRad(World p_i1582_1_) {
super(p_i1582_1_);
}
public void randomizeAge(int min, int max) {
this.maxAge = min + rand.nextInt(max - min);
}
}