Changes(real)

- Fixed bug which caused the Monarch's solar energy to not be functional.
- Changed texture of the cotton crop.
- Changed texture of the cotton ball.
- Added Item "Ghostly Cloth".
- Renamed java class "sun_totem" to "sunTotem" to fit convention.
This commit is contained in:
CosmoOrSth
2025-01-20 16:39:35 +05:30
parent ce1258228c
commit 621356df11
32 changed files with 95 additions and 32 deletions

View File

@@ -2,10 +2,7 @@ package com.smithy.terraoriginum;
import com.smithy.terraoriginum.blocks.cottonCropBlock;
import com.smithy.terraoriginum.blocks.crucifix;
import com.smithy.terraoriginum.items.iconItems;
import com.smithy.terraoriginum.items.sun_totem;
import com.smithy.terraoriginum.items.cottonItems;
import com.smithy.terraoriginum.items.umbrella;
import com.smithy.terraoriginum.items.*;
import com.smithy.terraoriginum.registry.modEnchantments;
import net.fabricmc.api.ModInitializer;
import net.fabricmc.fabric.api.itemgroup.v1.ItemGroupEvents;
@@ -27,10 +24,11 @@ public class TerraOriginum implements ModInitializer {
crucifix.register();
cottonCropBlock.register();
cottonItems.register();
sun_totem.register();
sunTotem.register();
ghostlyItems.register();
ItemGroupEvents.modifyEntriesEvent(ItemGroups.TOOLS).register((content) -> content.add(umbrella.UMBRELLA));
ItemGroupEvents.modifyEntriesEvent(ItemGroups.TOOLS).register((content) -> content.add(sun_totem.SUN_TOTEM));
ItemGroupEvents.modifyEntriesEvent(ItemGroups.TOOLS).register((content) -> content.add(sunTotem.SUN_TOTEM));
ItemGroupEvents.modifyEntriesEvent(ItemGroups.FUNCTIONAL).register((content) -> content.add(crucifix.CRUCIFIX));
ItemGroupEvents.modifyEntriesEvent(ItemGroups.NATURAL).register((content) -> content.add(cottonItems.COTTON_SEEDS));
ItemGroupEvents.modifyEntriesEvent(ItemGroups.INGREDIENTS).register((content) -> content.add(cottonItems.COTTON_BALL));