Skip to content

Commit

Permalink
new
Browse files Browse the repository at this point in the history
  • Loading branch information
Hummel009 committed Dec 30, 2023
1 parent 4c19137 commit 855bbbf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 1.20.4/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ group = "hummel"
version = "v" + LocalDate.now().format(DateTimeFormatter.ofPattern("yy.MM.dd"))

dependencies {
minecraft("net.minecraftforge:forge:1.20.4-49.0.10")
minecraft("net.minecraftforge:forge:1.20.4-49.0.12")
}

java {
Expand Down
3 changes: 2 additions & 1 deletion 1.20.4/src/main/java/legendarium/LI.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class LI {
public static final Collection<Item> CONTENT = new ArrayList<>();

public static final DeferredRegister<Item> ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, "legendarium");
public static final DeferredRegister<CreativeModeTab> CREATIVE_TABS = DeferredRegister.create(Registries.CREATIVE_MODE_TAB, "trop");
public static final DeferredRegister<CreativeModeTab> CREATIVE_TABS = DeferredRegister.create(Registries.CREATIVE_MODE_TAB, "legendarium");

public static final RegistryObject<Item> WEAPON_ACHARN = ITEMS.register("weapon_acharn", LIItemSword::new);
public static final RegistryObject<Item> WEAPON_AEGLOS = ITEMS.register("weapon_aeglos", LIItemSword::new);
Expand Down Expand Up @@ -82,6 +82,7 @@ public class LI {
public static final RegistryObject<Item> WEAPON_THROR = ITEMS.register("weapon_thror", LIItemSword::new);
public static final RegistryObject<Item> WEAPON_URFAEL = ITEMS.register("weapon_urfael", LIItemSword::new);
public static final RegistryObject<Item> WEAPON_WITCHKING = ITEMS.register("weapon_witchking", LIItemSword::new);

public static final RegistryObject<Item> ARKENSTONE = ITEMS.register("arkenstone", LIItemEmpty::new);
public static final RegistryObject<Item> SILMARIL = ITEMS.register("silmaril", LIItemEmpty::new);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ public TextureAtlasSprite getParticleIcon() {
public ItemOverrides getOverrides() {
return smallModel.getOverrides();
}
}
}

0 comments on commit 855bbbf

Please sign in to comment.