Skip to content

Commit

Permalink
[patch] remove unnecessary imports
Browse files Browse the repository at this point in the history
  • Loading branch information
vanillyn committed Aug 29, 2024
1 parent 3439916 commit 7f69891
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 19 deletions.
1 change: 0 additions & 1 deletion src/client/java/world/vanillyn/BangbooClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import net.minecraft.client.option.KeyBinding;
import net.minecraft.client.render.entity.model.EntityModelLayer;
import net.minecraft.client.util.InputUtil;
import net.minecraft.server.network.ServerPlayerEntity;
import net.minecraft.util.ActionResult;
import org.lwjgl.glfw.GLFW;
import world.vanillyn.entity.bangboo.*;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
package world.vanillyn.render.Screen.Entity;

import net.minecraft.client.MinecraftClient;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityType;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.server.network.ServerPlayerEntity;
import world.vanillyn.BangbooMod;
import world.vanillyn.entity.bangboo.Bangboo;
import world.vanillyn.render.Screen.TestScreen;
Expand Down
9 changes: 0 additions & 9 deletions src/client/java/world/vanillyn/render/Screen/TestScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,13 @@
import io.wispforest.owo.ui.component.ButtonComponent;
import io.wispforest.owo.ui.component.LabelComponent;
import io.wispforest.owo.ui.container.FlowLayout;
import net.minecraft.entity.Entity;
import net.minecraft.entity.ItemEntity;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NbtCompound;
import net.minecraft.server.network.ServerPlayerEntity;
import net.minecraft.text.Text;
import world.vanillyn.BangbooMod;
import world.vanillyn.entity.bangboo.Bangboo;
import world.vanillyn.entity.data.BangbooEntityData;
import world.vanillyn.entity.data.bangboo.BangbooComponents;
import world.vanillyn.net.BangbooChannel;

import java.util.Optional;


public class TestScreen extends BaseUIModelScreen<FlowLayout> {

Expand Down
4 changes: 0 additions & 4 deletions src/main/java/world/vanillyn/entity/bangboo/Bangboo.java
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
package world.vanillyn.entity.bangboo;

import io.wispforest.owo.ui.component.LabelComponent;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityType;
import net.minecraft.entity.ItemEntity;
import net.minecraft.entity.passive.PassiveEntity;
import net.minecraft.entity.passive.TameableEntity;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NbtCompound;
import net.minecraft.server.world.ServerWorld;
import net.minecraft.text.Text;
import net.minecraft.util.ActionResult;
import net.minecraft.util.Hand;
import net.minecraft.util.ItemScatterer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package world.vanillyn.entity.bangboo;

import com.mojang.serialization.Lifecycle;
import net.fabricmc.fabric.api.object.builder.v1.entity.FabricDefaultAttributeRegistry;
import net.minecraft.entity.EntityType;
import net.minecraft.entity.SpawnGroup;
import net.minecraft.registry.Registries;
Expand Down
1 change: 0 additions & 1 deletion src/main/java/world/vanillyn/entity/bangboo/Eous.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package world.vanillyn.entity.bangboo;

import net.fabricmc.fabric.api.object.builder.v1.entity.FabricDefaultAttributeRegistry;
import net.minecraft.entity.EntityType;
import net.minecraft.entity.attribute.DefaultAttributeContainer;
import net.minecraft.entity.attribute.EntityAttributes;
Expand Down

0 comments on commit 7f69891

Please sign in to comment.