-
Notifications
You must be signed in to change notification settings - Fork 200
Closed
Labels
Description
EntityFX don't have to have World constructor because it will not be created by Minecraft. But this plugin makes the error, "MCP Entity class missing World constructor".
example
import net.minecraft.client.particle.EntityFX;
import net.minecraft.world.World;
public class ParticleTest extends EntityFX {
protected ParticleTest(World p_i1218_1_, double p_i1218_2_, double p_i1218_4_, double p_i1218_6_) {
super(p_i1218_1_, p_i1218_2_, p_i1218_4_, p_i1218_6_);
}
public ParticleTest(World p_i1219_1_, double p_i1219_2_, double p_i1219_4_, double p_i1219_6_, double p_i1219_8_, double p_i1219_10_, double p_i1219_12_) {
super(p_i1219_1_, p_i1219_2_, p_i1219_4_, p_i1219_6_, p_i1219_8_, p_i1219_10_, p_i1219_12_);
}
}- Minecraft Development for IntelliJ plugin version: v. 2019.1-1.2.22
- IntelliJ version: IntelliJ IDEA 2019.1.2 (Ultimate Edition)
- Operating System macOS 10.14.4
- Target platforms: MCP