Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
lanAnderson committed Aug 21, 2024
1 parent 73503b3 commit 7294b12
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@
import club.iananderson.pocketgps.forge.impl.accessories.AccessoriesCompat;
import club.iananderson.pocketgps.forge.impl.curios.CuriosCompat;
import club.iananderson.pocketgps.forge.registry.ForgeRegistration;
import net.minecraft.world.item.Item;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.eventbus.api.IEventBus;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent;
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;
import net.minecraftforge.registries.RegistryObject;

@Mod(PocketGps.MOD_ID)
public final class PocketGpsForge {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package club.iananderson.pocketgps.forge.event;

import club.iananderson.pocketgps.PocketGps;
import club.iananderson.pocketgps.forge.PocketGpsForge;
import club.iananderson.pocketgps.forge.registry.ForgeRegistration;
import club.iananderson.pocketgps.minimap.CurrentMinimap;
import io.wispforest.accessories.api.AccessoriesCapability;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package club.iananderson.pocketgps.forge.impl.accessories;

import club.iananderson.pocketgps.forge.PocketGpsForge;
import club.iananderson.pocketgps.forge.impl.accessories.item.AccessoriesGps;
import club.iananderson.pocketgps.forge.registry.ForgeRegistration;
import io.wispforest.accessories.api.AccessoriesAPI;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package club.iananderson.pocketgps.forge.impl.curios;

import club.iananderson.pocketgps.forge.PocketGpsForge;
import club.iananderson.pocketgps.forge.impl.curios.item.CuriosGps;
import club.iananderson.pocketgps.forge.registry.ForgeRegistration;
import net.minecraftforge.eventbus.api.IEventBus;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ public class ForgeRegistration {
public static final DeferredRegister<CreativeModeTab> CREATIVE_TAB = DeferredRegister.create(
Registries.CREATIVE_MODE_TAB, PocketGps.MOD_ID);

public static RegistryObject<Item> POCKET_GPS = ITEMS.register("gps",
() -> new GpsItem(new Item.Properties()));;
public static RegistryObject<Item> POCKET_GPS = ITEMS.register("gps", () -> new GpsItem(new Item.Properties()));

public static RegistryObject<CreativeModeTab> TAB = CREATIVE_TAB.register("tab", () -> CreativeModeTab.builder()
.title(Component.translatable("tab.pocketgps"))
Expand Down

0 comments on commit 7294b12

Please sign in to comment.