Clean up code
SlightlyVanilla/pipeline/head This commit looks good Details

This commit is contained in:
TheBrokenRail 2020-03-22 13:54:49 -04:00
parent 73d90bb2ff
commit 484429ed23
3 changed files with 13 additions and 0 deletions

View File

@ -8,11 +8,14 @@ import io.github.prospector.modmenu.api.ConfigScreenFactory;
import io.github.prospector.modmenu.api.ModMenuApi; import io.github.prospector.modmenu.api.ModMenuApi;
import me.sargunvohra.mcmods.autoconfig1u.AutoConfig; import me.sargunvohra.mcmods.autoconfig1u.AutoConfig;
import net.fabricmc.api.ClientModInitializer; import net.fabricmc.api.ClientModInitializer;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.fabricmc.fabric.api.client.rendereregistry.v1.EntityRendererRegistry; import net.fabricmc.fabric.api.client.rendereregistry.v1.EntityRendererRegistry;
import net.minecraft.client.gui.screen.Screen; import net.minecraft.client.gui.screen.Screen;
import net.minecraft.client.render.entity.FlyingItemEntityRenderer; import net.minecraft.client.render.entity.FlyingItemEntityRenderer;
@SuppressWarnings("unused") @SuppressWarnings("unused")
@Environment(EnvType.CLIENT)
public class SlightlyVanillaClient implements ClientModInitializer, ModMenuApi { public class SlightlyVanillaClient implements ClientModInitializer, ModMenuApi {
@Override @Override
public void onInitializeClient() { public void onInitializeClient() {

View File

@ -15,6 +15,7 @@ import net.minecraft.particle.ParticleTypes;
import net.minecraft.util.hit.HitResult; import net.minecraft.util.hit.HitResult;
import net.minecraft.world.World; import net.minecraft.world.World;
@SuppressWarnings("unused")
public class SlimeballEntity extends ThrownItemEntity { public class SlimeballEntity extends ThrownItemEntity {
public SlimeballEntity(EntityType<SlimeballEntity> entityType, World world) { public SlimeballEntity(EntityType<SlimeballEntity> entityType, World world) {
super(entityType, world); super(entityType, world);
@ -28,6 +29,10 @@ public class SlimeballEntity extends ThrownItemEntity {
super(SlightlyVanilla.SLIMEBALL_ENTITY, x, y, z, world); super(SlightlyVanilla.SLIMEBALL_ENTITY, x, y, z, world);
} }
public SlimeballEntity(World world) {
super(SlightlyVanilla.SLIMEBALL_ENTITY, world);
}
@Override @Override
protected Item getDefaultItem() { protected Item getDefaultItem() {
return Items.SLIME_BALL; return Items.SLIME_BALL;

View File

@ -18,6 +18,7 @@ import net.minecraft.particle.ParticleTypes;
import net.minecraft.util.hit.HitResult; import net.minecraft.util.hit.HitResult;
import net.minecraft.world.World; import net.minecraft.world.World;
@SuppressWarnings("unused")
public class SpawnEggEntity extends ThrownItemEntity { public class SpawnEggEntity extends ThrownItemEntity {
public SpawnEggEntity(EntityType<SpawnEggEntity> entityType, World world) { public SpawnEggEntity(EntityType<SpawnEggEntity> entityType, World world) {
super(entityType, world); super(entityType, world);
@ -31,6 +32,10 @@ public class SpawnEggEntity extends ThrownItemEntity {
super(SlightlyVanilla.SPAWN_EGG_ENTITY, x, y, z, world); super(SlightlyVanilla.SPAWN_EGG_ENTITY, x, y, z, world);
} }
public SpawnEggEntity(World world) {
super(SlightlyVanilla.SPAWN_EGG_ENTITY, world);
}
@Override @Override
protected Item getDefaultItem() { protected Item getDefaultItem() {
return Items.PIG_SPAWN_EGG; return Items.PIG_SPAWN_EGG;