mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
16 lines
303 B
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);
|
|
}
|
|
|
|
}
|