Jump to content

How do i register a munition-entity, using my existing registration procedure?


Drachenbauer

Recommended Posts

Hello

 

Actual i register my entities like this:

RegistryEvent in the main-class:

        @SubscribeEvent
        public static void registerEntities(final RegistryEvent.Register<EntityType<?>> event)
        {
            event.getRegistry().registerAll(AngryBirdsEntities.RED,
                                            AngryBirdsEntities.CHUCK,
                                            AngryBirdsEntities.BLUES,
                                            AngryBirdsEntities.BOMB,
                                            AngryBirdsEntities.MATHILDA,
                                            AngryBirdsEntities.TERENCE,
                                            AngryBirdsEntities.SILVER,
                                            AngryBirdsEntities.BUBBLES,
                                            AngryBirdsEntities.HAL,
                                            AngryBirdsEntities.STELLA,
                                            AngryBirdsEntities.POPPY,
                                            AngryBirdsEntities.WILLOW,
                                            AngryBirdsEntities.DAHLIA,
                                            AngryBirdsEntities.LUCA,
                                            AngryBirdsEntities.ICE_BIRD);
        }

Prepared entities in the entity-list-class:

    public static EntityType<?> RED = EntityType.Builder.create(RedEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".red").setRegistryName("red");
    public static EntityType<?> CHUCK = EntityType.Builder.create(ChuckEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".chuck").setRegistryName("chuck");
    public static EntityType<?> BLUES = EntityType.Builder.create(BluesEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".blues").setRegistryName("blues");
    public static EntityType<?> BOMB = EntityType.Builder.create(BombEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".bomb").setRegistryName("bomb");
    public static EntityType<?> MATHILDA = EntityType.Builder.create(MathildaEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".mathilda").setRegistryName("mathilda");
    public static EntityType<?> TERENCE = EntityType.Builder.create(TerenceEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".terence").setRegistryName("terence");
    public static EntityType<?> SILVER = EntityType.Builder.create(SilverEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".silver").setRegistryName("silver");
    public static EntityType<?> BUBBLES = EntityType.Builder.create(BubblesEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".bubbles").setRegistryName("bubbles");
    public static EntityType<?> HAL = EntityType.Builder.create(HalEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".hal").setRegistryName("hal");
    public static EntityType<?> STELLA = EntityType.Builder.create(StellaEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".stella").setRegistryName("stella");
    public static EntityType<?> POPPY = EntityType.Builder.create(PoppyEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".poppy").setRegistryName("poppy");
    public static EntityType<?> WILLOW = EntityType.Builder.create(WillowEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".willow").setRegistryName("willow");
    public static EntityType<?> DAHLIA = EntityType.Builder.create(DahliaEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".dahlia").setRegistryName("dahlia");
    public static EntityType<?> LUCA = EntityType.Builder.create(LucaEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".luca").setRegistryName("luca");
    public static EntityType<?> ICE_BIRD = EntityType.Builder.create(IceBirdEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".ice_bird").setRegistryName("ice_bird");

How do i register a munition-entity (based on the arrow-entity) in a way, that i can put it into the RegistryEvent in the main-class, as well as the living entities?

Edited by Drachenbauer
Link to comment
Share on other sites

Do not use static initializers.

Initialize and register your registries (in your case, the EntityTypes) in the according registry events.

Some tips:

Spoiler

Modder Support:

Spoiler

1. Do not follow tutorials on YouTube, especially TechnoVision (previously called Loremaster) and HarryTalks, due to their promotion of bad practice and usage of outdated code.

2. Always post your code.

3. Never copy and paste code. You won't learn anything from doing that.

4. 

Quote

Programming via Eclipse's hotfixes will get you nowhere

5. Learn to use your IDE, especially the debugger.

6.

Quote

The "picture that's worth 1000 words" only works if there's an obvious problem or a freehand red circle around it.

Support & Bug Reports:

Spoiler

1. Read the EAQ before asking for help. Remember to provide the appropriate log(s).

2. Versions below 1.11 are no longer supported due to their age. Update to a modern version of Minecraft to receive support.

 

 

Link to comment
Share on other sites

I got the way with static initializers from a tutorial of Harry Talks.

My living entities work this way.

 

I made my own abstract entity class for my own munition, because i want no commections between the arrows and my munition.

I don´t know how else i can  make it impossible to use my munition with the bow and normal arrows with my slingshot.

Edited by Drachenbauer
Link to comment
Share on other sites

Even if static fields are working for you, the experts will still tell you not to because they can fail in unpredictable and strange ways that can be hard to troubleshoot.   It’s not really that hard to implement.  

 

Extending ArrowEntity won't have an impact on launching your munitions, because ArrowItem is a separate Class, just use a generic Item, not one based on ArrowItem.

 

There are a lot of behaviors in AbstractArrowEntity that would be difficult to implement in a custom entity.  If you can find a way to extend ArrowEntity, you might get past the custom spawn packet problem i've run into.  

Edited by PhilipChonacky
correction
Link to comment
Share on other sites

Do not follow Harry Talks tutorials; they are terrible in that they promotes bad coding practices and outdated/deprecated methods.

Static initializers will cause problems, and you cannot control when they are initialized.

 

Creating your own entity does not do anything in preventing your slingshot from using arrows.

You should override ItemBow#isArrow and return true if the given ItemStack contains your arrow item.

Some tips:

Spoiler

Modder Support:

Spoiler

1. Do not follow tutorials on YouTube, especially TechnoVision (previously called Loremaster) and HarryTalks, due to their promotion of bad practice and usage of outdated code.

2. Always post your code.

3. Never copy and paste code. You won't learn anything from doing that.

4. 

Quote

Programming via Eclipse's hotfixes will get you nowhere

5. Learn to use your IDE, especially the debugger.

6.

Quote

The "picture that's worth 1000 words" only works if there's an obvious problem or a freehand red circle around it.

Support & Bug Reports:

Spoiler

1. Read the EAQ before asking for help. Remember to provide the appropriate log(s).

2. Versions below 1.11 are no longer supported due to their age. Update to a modern version of Minecraft to receive support.

 

 

Link to comment
Share on other sites

my slingshot does not extend the bow.

I used the code from the bow, and where the bow uses ArrowItem, i replaced this with my own munition-item class.

And inside the munition-item-class I have got a connection to my own munition-entity-class, that extends AbstractArrowEntity.

 

Where do i find better video tutorials for 1.14.3?

Is this better:

Jorrit Tyberghein modding tutorials

Edited by Drachenbauer
Link to comment
Share on other sites

If your slingshot act like a bow, it shall extends the bow.

There is no point in copying everything again.

Some tips:

Spoiler

Modder Support:

Spoiler

1. Do not follow tutorials on YouTube, especially TechnoVision (previously called Loremaster) and HarryTalks, due to their promotion of bad practice and usage of outdated code.

2. Always post your code.

3. Never copy and paste code. You won't learn anything from doing that.

4. 

Quote

Programming via Eclipse's hotfixes will get you nowhere

5. Learn to use your IDE, especially the debugger.

6.

Quote

The "picture that's worth 1000 words" only works if there's an obvious problem or a freehand red circle around it.

Support & Bug Reports:

Spoiler

1. Read the EAQ before asking for help. Remember to provide the appropriate log(s).

2. Versions below 1.11 are no longer supported due to their age. Update to a modern version of Minecraft to receive support.

 

 

Link to comment
Share on other sites

but how do i separate the munitions then to make it unable to use arrows?

 

About Static initializers for entities:

The EntityTypes - class in the minecraft-source also has such static fields (with all capital entity-names) for all entities.

Here is a sample for one of theese lines:

public static final EntityType<ArrowEntity> ARROW = register("arrow", EntityType.Builder.<ArrowEntity>create(ArrowEntity::new, EntityClassification.MISC).size(0.5F, 0.5F));
Edited by Drachenbauer
Link to comment
Share on other sites

If you say, tha way, Harry Talks registers entities, is not good, then i need a tutorial-video, that shows it a better way.

 

Tutorial-videos work the best for me to make stuff in a mod working.

And Harry Talks was the only one, i found so far, who shows registering entities in 1.14.3

Edited by Drachenbauer
Link to comment
Share on other sites

10 hours ago, Drachenbauer said:

Tutorial-videos work the best for me to make stuff in a mod working.

@EventBusSubscriber(bus=Bus.MOD, modid="modid")
public class EntityTypes {
  @ObjectHolder("modid:red")
  public static final EntityType RED = null;
  
  @SubscribeEvent
  public static void registerEntities(Register<EntityType<?>> event) {
    event.getRegistry().registerAll(
    	EntityType.Builder.create(RedEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".red").setRegistryName("red")
    );
  }
}

That's more or less what it should look like.

Edited by Animefan8888

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

I have lot´s of different birds.

Should i give each one such an objectholder with their names?

 

I connected ti the modid-string in my Reference-Class, where you say "modid" i think, so it keeps working, if i think about changing the modid later in the reference-class.

 

your empty Entitytype-thing gives me a raw type warning.should i better add "<?>" behind "EntityType"?

Edited by Drachenbauer
Link to comment
Share on other sites

6 minutes ago, Drachenbauer said:

your empty Entitytype-thing gives me a raw type warning.should i better add "<?>" behind "EntityType"?

Yes though unless the underline is red it doesn't matter.

8 minutes ago, Drachenbauer said:

Should i give each one such an objectholder with their names? 

You only need to add the ObjectHolder/Field if you need to access the field.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

The entity-classes of my birds want an EntityType named in theri constructor.

So i think, i need theese fields for all of them to put theese all-capitals-names into the constructors..

 

in my main-class i have this:

@SubscribeEvent
        public static void registerEntities(final RegistryEvent.Register<EntityType<?>> event)
        {
            event.getRegistry().registerAll(AngryBirdsEntities.RED,
                                            AngryBirdsEntities.CHUCK,
                                            AngryBirdsEntities.BLUES,
                                            AngryBirdsEntities.BOMB,
                                            AngryBirdsEntities.MATHILDA,
                                            AngryBirdsEntities.TERENCE,
                                            AngryBirdsEntities.SILVER,
                                            AngryBirdsEntities.BUBBLES,
                                            AngryBirdsEntities.HAL,
                                            AngryBirdsEntities.STELLA,
                                            AngryBirdsEntities.POPPY,
                                            AngryBirdsEntities.WILLOW,
                                            AngryBirdsEntities.DAHLIA,
                                            AngryBirdsEntities.LUCA,
                                            AngryBirdsEntities.ICE_BIRD);
        }

Can i delete this, if i change all my birds to how you make it?

 

And in the headline of your method, i think, it should be "Register<EntityType<?>> event" instead of "Register<EntityTypes> event".

 

It seams like you forgot to tell me something.

I cannot spwn them with a spawn-egg now.

 

This i how i actually made my SpawnEggs:

    public static void registerEntitySpawnEggs(final RegistryEvent.Register<Item>event)
    {
        event.getRegistry().registerAll(AngryBirdsItems.red_egg = registerEntitySpawnEgg(RED, 0xdf0000, 0xdfbf9f, "red_egg"),
                                        AngryBirdsItems.chuck_egg = registerEntitySpawnEgg(CHUCK, 0xffff00, 0xffffff, "chuck_egg"),
                                        AngryBirdsItems.blues_egg = registerEntitySpawnEgg(BLUES, 0x007fff, 0xff0000, "blues_egg"),
                                        AngryBirdsItems.bomb_egg = registerEntitySpawnEgg(BOMB, 0x3f3f3f, 0x7f7f7f, "bomb_egg"),
                                        AngryBirdsItems.mathilda_egg = registerEntitySpawnEgg(MATHILDA, 0xffffff, 0xffbfbf, "mathilda_egg"),
                                        AngryBirdsItems.terence_egg = registerEntitySpawnEgg(TERENCE, 0xbf002f, 0xbf9f7f, "terence_egg"),
                                        AngryBirdsItems.silver_egg = registerEntitySpawnEgg(SILVER, 0xbfbfbf, 0xffffff, "silver_egg"),
                                        AngryBirdsItems.bubbles_egg = registerEntitySpawnEgg(BUBBLES, 0xff7f00, 0x000000, "bubbles_egg"),
                                        AngryBirdsItems.hal_egg = registerEntitySpawnEgg(HAL, 0x00bf00, 0xffffff, "hal_egg"),
                                        AngryBirdsItems.stella_egg = registerEntitySpawnEgg(STELLA, 0xffadb7, 0xffd7dc, "stella_egg"),
                                        AngryBirdsItems.poppy_egg = registerEntitySpawnEgg(POPPY, 0xffff3f, 0xffffbf, "poppy_egg"),
                                        AngryBirdsItems.willow_egg = registerEntitySpawnEgg(WILLOW, 0x3f9fff, 0x7fbfff, "willow_egg"),
                                        AngryBirdsItems.dahlia_egg = registerEntitySpawnEgg(DAHLIA, 0xbf7f3f, 0xffdfbf, "dahlia_egg"),
                                        AngryBirdsItems.luca_egg = registerEntitySpawnEgg(LUCA, 0x7fbfff, 0xffffbf, "luca_egg"),
                                        AngryBirdsItems.ice_bird_egg = registerEntitySpawnEgg(ICE_BIRD, 0x7fbfff, 0x007fff, "ice_bird_egg"));	    
    }
    
    public static Item registerEntitySpawnEgg(EntityType<?> type, int color1, int color2, String name)
    {
        SpawnEggItem item = new SpawnEggItem(type, color1, color2, new Item.Properties().group(AngryBirds.ANGRY_BIRDS));
        item.setRegistryName(name);
        return item;
    }

 

If i try to use a spawn egg, i get this:

Spoiler

[23:13:29.614] [Server thread/FATAL] [minecraft/ThreadTaskExecutor]: Error executing task on Server
java.lang.NullPointerException: null
    at net.minecraft.item.SpawnEggItem.onItemUse(SourceFile:82) ~[?:?] {}
    at net.minecraftforge.common.ForgeHooks.onPlaceItemIntoWorld(ForgeHooks.java:599) ~[?:?] {}
    at net.minecraft.item.ItemStack.onItemUse(ItemStack.java:162) ~[?:?] {}
    at net.minecraft.server.management.PlayerInteractionManager.func_219441_a(PlayerInteractionManager.java:357) ~[?:?] {}
    at net.minecraft.network.play.ServerPlayNetHandler.processTryUseItemOnBlock(ServerPlayNetHandler.java:876) ~[?:?] {}
    at net.minecraft.network.play.client.CPlayerTryUseItemOnBlockPacket.processPacket(SourceFile:36) ~[?:?] {}
    at net.minecraft.network.play.client.CPlayerTryUseItemOnBlockPacket.processPacket(SourceFile:10) ~[?:?] {}
    at net.minecraft.network.PacketThreadUtil.func_210405_a(SourceFile:15) ~[?:?] {}
    at net.minecraft.util.concurrent.TickDelayedTask.run(SourceFile:18) ~[?:?] {}
    at net.minecraft.util.concurrent.ThreadTaskExecutor.run(SourceFile:135) [?:?] {pl:accesstransformer:B}
    at net.minecraft.util.concurrent.RecursiveEventLoop.run(SourceFile:23) [?:?] {}
    at net.minecraft.util.concurrent.ThreadTaskExecutor.driveOne(SourceFile:114) [?:?] {pl:accesstransformer:B}
    at net.minecraft.server.MinecraftServer.func_213205_aW(MinecraftServer.java:683) [?:?] {pl:accesstransformer:B}
    at net.minecraft.server.MinecraftServer.driveOne(MinecraftServer.java:677) [?:?] {pl:accesstransformer:B}
    at net.minecraft.util.concurrent.ThreadTaskExecutor.drainTasks(SourceFile:99) [?:?] {pl:accesstransformer:B}
    at net.minecraft.server.MinecraftServer.runScheduledTasks(MinecraftServer.java:662) [?:?] {pl:accesstransformer:B}
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:613) [?:?] {pl:accesstransformer:B}
    at java.lang.Thread.run(Unknown Source) [?:1.8.0_221] {}

It shows no class of my mod.

So i don´t know, what exactly i have to change to fix this eror.

Edited by Drachenbauer
Link to comment
Share on other sites

2 minutes ago, Drachenbauer said:

Can i delete this, if i change all my birds to how you make it?

Yes

 

2 minutes ago, Drachenbauer said:

And in the headline of your method, i think, it should be "Register<EntityType<?>> event" instead of "Register<EntityTypes> event".

If that makes your IDE happy then yes.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

40 minutes ago, Drachenbauer said:

It seams like you forgot to tell me something.

I cannot spwn them with a spawn-egg now.

 

This i how i actually made my SpawnEggs:


    public static void registerEntitySpawnEggs(final RegistryEvent.Register<Item>event)
    {
        event.getRegistry().registerAll(AngryBirdsItems.red_egg = registerEntitySpawnEgg(RED, 0xdf0000, 0xdfbf9f, "red_egg"),
                                        AngryBirdsItems.chuck_egg = registerEntitySpawnEgg(CHUCK, 0xffff00, 0xffffff, "chuck_egg"),
                                        AngryBirdsItems.blues_egg = registerEntitySpawnEgg(BLUES, 0x007fff, 0xff0000, "blues_egg"),
                                        AngryBirdsItems.bomb_egg = registerEntitySpawnEgg(BOMB, 0x3f3f3f, 0x7f7f7f, "bomb_egg"),
                                        AngryBirdsItems.mathilda_egg = registerEntitySpawnEgg(MATHILDA, 0xffffff, 0xffbfbf, "mathilda_egg"),
                                        AngryBirdsItems.terence_egg = registerEntitySpawnEgg(TERENCE, 0xbf002f, 0xbf9f7f, "terence_egg"),
                                        AngryBirdsItems.silver_egg = registerEntitySpawnEgg(SILVER, 0xbfbfbf, 0xffffff, "silver_egg"),
                                        AngryBirdsItems.bubbles_egg = registerEntitySpawnEgg(BUBBLES, 0xff7f00, 0x000000, "bubbles_egg"),
                                        AngryBirdsItems.hal_egg = registerEntitySpawnEgg(HAL, 0x00bf00, 0xffffff, "hal_egg"),
                                        AngryBirdsItems.stella_egg = registerEntitySpawnEgg(STELLA, 0xffadb7, 0xffd7dc, "stella_egg"),
                                        AngryBirdsItems.poppy_egg = registerEntitySpawnEgg(POPPY, 0xffff3f, 0xffffbf, "poppy_egg"),
                                        AngryBirdsItems.willow_egg = registerEntitySpawnEgg(WILLOW, 0x3f9fff, 0x7fbfff, "willow_egg"),
                                        AngryBirdsItems.dahlia_egg = registerEntitySpawnEgg(DAHLIA, 0xbf7f3f, 0xffdfbf, "dahlia_egg"),
                                        AngryBirdsItems.luca_egg = registerEntitySpawnEgg(LUCA, 0x7fbfff, 0xffffbf, "luca_egg"),
                                        AngryBirdsItems.ice_bird_egg = registerEntitySpawnEgg(ICE_BIRD, 0x7fbfff, 0x007fff, "ice_bird_egg"));	    
    }
    
    public static Item registerEntitySpawnEgg(EntityType<?> type, int color1, int color2, String name)
    {
        SpawnEggItem item = new SpawnEggItem(type, color1, color2, new Item.Properties().group(AngryBirds.ANGRY_BIRDS));
        item.setRegistryName(name);
        return item;
    }

 

If i try to use a spawn egg, i get this:

  Reveal hidden contents

[23:13:29.614] [Server thread/FATAL] [minecraft/ThreadTaskExecutor]: Error executing task on Server
java.lang.NullPointerException: null
    at net.minecraft.item.SpawnEggItem.onItemUse(SourceFile:82) ~[?:?] {}
    at net.minecraftforge.common.ForgeHooks.onPlaceItemIntoWorld(ForgeHooks.java:599) ~[?:?] {}
    at net.minecraft.item.ItemStack.onItemUse(ItemStack.java:162) ~[?:?] {}
    at net.minecraft.server.management.PlayerInteractionManager.func_219441_a(PlayerInteractionManager.java:357) ~[?:?] {}
    at net.minecraft.network.play.ServerPlayNetHandler.processTryUseItemOnBlock(ServerPlayNetHandler.java:876) ~[?:?] {}
    at net.minecraft.network.play.client.CPlayerTryUseItemOnBlockPacket.processPacket(SourceFile:36) ~[?:?] {}
    at net.minecraft.network.play.client.CPlayerTryUseItemOnBlockPacket.processPacket(SourceFile:10) ~[?:?] {}
    at net.minecraft.network.PacketThreadUtil.func_210405_a(SourceFile:15) ~[?:?] {}
    at net.minecraft.util.concurrent.TickDelayedTask.run(SourceFile:18) ~[?:?] {}
    at net.minecraft.util.concurrent.ThreadTaskExecutor.run(SourceFile:135) [?:?] {pl:accesstransformer:B}
    at net.minecraft.util.concurrent.RecursiveEventLoop.run(SourceFile:23) [?:?] {}
    at net.minecraft.util.concurrent.ThreadTaskExecutor.driveOne(SourceFile:114) [?:?] {pl:accesstransformer:B}
    at net.minecraft.server.MinecraftServer.func_213205_aW(MinecraftServer.java:683) [?:?] {pl:accesstransformer:B}
    at net.minecraft.server.MinecraftServer.driveOne(MinecraftServer.java:677) [?:?] {pl:accesstransformer:B}
    at net.minecraft.util.concurrent.ThreadTaskExecutor.drainTasks(SourceFile:99) [?:?] {pl:accesstransformer:B}
    at net.minecraft.server.MinecraftServer.runScheduledTasks(MinecraftServer.java:662) [?:?] {pl:accesstransformer:B}
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:613) [?:?] {pl:accesstransformer:B}
    at java.lang.Thread.run(Unknown Source) [?:1.8.0_221] {}

It shows no class of my mod.

So i don´t know, what exactly i have to change to fix this eror.

And how about this?

Link to comment
Share on other sites

43 minutes ago, Drachenbauer said:

If i try to use a spawn egg, i get this:

That is caused because Items are registered before EntityTypes. This is probably a bug and you'll want to report it here. For now it is probably better to get rid of the ObjectHolders on EntityType fields and initialize them in the Item registry event then register them in the EntityType registry event.

 

public static EntityType<?> RED;
public static void registerSpawnEggs(Register<Item> event) {
  RED = ...
  event.getRegistry().registerAll(
  	new SpawnEggItem(...)
  );
}
public static void registerEntityTypes(Register<EntityType<?>> event) {
  event.getRegistry().registerAll(
  	RED,
    ...
  );

This is obvious psuedocode, but what you should do until that is addressed.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

Now my code for this looks like this:

    @SubscribeEvent
    public static void registerEntitySpawnEggs(Register<Item>event)
    {
        RED = EntityType.Builder.create(RedEntity::new, EntityClassification.CREATURE).build(Reference.MOD_ID + ".red").setRegistryName("red");
        
        event.getRegistry().registerAll(AngryBirdsItems.red_egg = registerEntitySpawnEgg(RED, 0xdf0000, 0xdfbf9f, "red_egg"),
                                        AngryBirdsItems.chuck_egg = registerEntitySpawnEgg(CHUCK, 0xffff00, 0xffffff, "chuck_egg"),
                                        AngryBirdsItems.blues_egg = registerEntitySpawnEgg(BLUES, 0x007fff, 0xff0000, "blues_egg"),
                                        AngryBirdsItems.bomb_egg = registerEntitySpawnEgg(BOMB, 0x3f3f3f, 0x7f7f7f, "bomb_egg"),
                                        AngryBirdsItems.mathilda_egg = registerEntitySpawnEgg(MATHILDA, 0xffffff, 0xffbfbf, "mathilda_egg"),
                                        AngryBirdsItems.terence_egg = registerEntitySpawnEgg(TERENCE, 0xbf002f, 0xbf9f7f, "terence_egg"),
                                        AngryBirdsItems.silver_egg = registerEntitySpawnEgg(SILVER, 0xbfbfbf, 0xffffff, "silver_egg"),
                                        AngryBirdsItems.bubbles_egg = registerEntitySpawnEgg(BUBBLES, 0xff7f00, 0x000000, "bubbles_egg"),
                                        AngryBirdsItems.hal_egg = registerEntitySpawnEgg(HAL, 0x00bf00, 0xffffff, "hal_egg"),
                                        AngryBirdsItems.stella_egg = registerEntitySpawnEgg(STELLA, 0xffadb7, 0xffd7dc, "stella_egg"),
                                        AngryBirdsItems.poppy_egg = registerEntitySpawnEgg(POPPY, 0xffff3f, 0xffffbf, "poppy_egg"),
                                        AngryBirdsItems.willow_egg = registerEntitySpawnEgg(WILLOW, 0x3f9fff, 0x7fbfff, "willow_egg"),
                                        AngryBirdsItems.dahlia_egg = registerEntitySpawnEgg(DAHLIA, 0xbf7f3f, 0xffdfbf, "dahlia_egg"),
                                        AngryBirdsItems.luca_egg = registerEntitySpawnEgg(LUCA, 0x7fbfff, 0xffffbf, "luca_egg"),
                                        AngryBirdsItems.ice_bird_egg = registerEntitySpawnEgg(ICE_BIRD, 0x7fbfff, 0x007fff, "ice_bird_egg"));       
    }
    
    @SubscribeEvent
    public static void registerEntities(Register<EntityType<?>> event)
    {
      event.getRegistry().registerAll(RED);
      
      //event.getRegistry().registerAll(EntityType.Builder.<RedShotEntity>create(RedShotEntity::new, EntityClassification.MISC).size(0.5F, 0.5F));
    }
    
    public static Item registerEntitySpawnEgg(EntityType<?> type, int color1, int color2, String name)
    {
        SpawnEggItem item = new SpawnEggItem(type, color1, color2, new Item.Properties().group(AngryBirds.ANGRY_BIRDS));
        item.setRegistryName(name);
        return item;
    }

But it crashes, bevore the red loading bar is full.

I create the entity in the item register method and then register it in the registerEntity-method, like you say.

What did i understand wrong in your last code-template?

It says this errors:

Spoiler

[10:59:31.457] [Client thread/FATAL] [minecraft/Minecraft]: Reported exception thrown!
net.minecraft.crash.ReportedException: Rendering overlay

 

then

 

Caused by: java.lang.RuntimeException: One of more entry values did not copy to the correct id. Check log for details!

 

Each one followed by a stack of locations, wich are not inside my mod...

for the seccond part of the error, i cannot find out, wich entry value it means...

it didn´t write it into the lines below and i also cannot find it in the logs.

Edited by Drachenbauer
Link to comment
Share on other sites

OK crash fixed:

Now i have placed theese registry-events in my main-class, where i already had some of theese events in a sub-class,

So all registry events are located together at one spot..

And now i can spawn this entity again with the egg.

And so i keep my old entity-registering event, because it still needs only the all-capitals-entity-type-names, like i already use them there.

 

Another question:

How can i register my munitions this way?

If i try to make theese lines exactly the same:

RED_SHOT = EntityType.Builder.<RedShotEntity>create(RedShotEntity::new, EntityClassification.MISC).size(0.5F, 0.5F);

It says, that the constructor of my munition mismatches...

But one of it´s three constructors is similar to the ones of the other entities.

Edited by Drachenbauer
Link to comment
Share on other sites

Since i made my SlingshotItem extend the BowItem, it does not load it´s extra item-models for it´s pulling-animation any more.

What must i do to get this to work again?

 

Edit: finally fixed this:

I noticed, that the json for the item-model of the bow has an area "overrides", that leads to the pulling-states.

This was removed in the matching file of my slingshot.

it seams like i deleted it while modifying the file, and didnt notice that.

Now i readded it and the pulling-animation works.

 

Now i think, that my munitions don´t start flying, must be causef by the way, i registered them or by the renderer, i created for them.

For the renderer, i created a renderer-class, that extends EntityRender, like LivingRenderer does, but at the place, there the LivingRenderer has "LivingEntity" in it´s class-header, i used just the basic Entity-class.

Then i copyed all content of the Living-Renderer into my renderer and removed all about living (i think so).

Then the renderers for the different birds extend this one.

AngryBirdsMod Github

Search here for "AbstractBirdShotRenderer" to find my renderer class.

Can anyone pleas check it, if the error is located there?

Edited by Drachenbauer
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • EntityRenders requires an EntityRenderProvider. This is what I have: @Mod.EventBusSubscriber(modid = MODID, bus = Mod.EventBusSubscriber.Bus.MOD, value = Dist.CLIENT) public static class ClientModEvents { @SubscribeEvent public static void clientSetup(FMLClientSetupEvent event) { EntityRenderers.register(HOSE.get(), new HoseEntityRenderFactory()); } private static class HoseEntityRenderFactory implements EntityRendererProvider<HoseEntity> { @Override public EntityRenderer<HoseEntity> create(Context context) { return new HoseEntityRenderer<>(context); } } } Replace HoseEntity with your own entity. If you're doing multiple try doing generics (though untested).
    • First off, I know should probably be able to debug this on my own, but this is my first mod, and I couldn't figure it out for multiple days now. What I'm trying to do, is to modify the default minecart by replacing it with a slightly different version, but I'm stuck 1 step before that, that being "cloning" the minecart as a separate Entity/Item. Here you can see a GitHub gist of all relevant files: https://gist.github.com/Kipama/cd39127e8891715a3006fa990ca7ff14 If there are files missing or access isn't working as intended, please let me know! In the Gist you can find the following files: -CustomMinecartEntity.java:        This file extends AbstractMinecart and is a clone of the vanilla minecart entity. I know I should override the minecart entity directly, but as this should work rn, I didn't change it yet. -CustomMinecartRenderer.java:  Basically vanilla MinecartRenderer with a Custom slapped on it, extends MinecraftRenderer. -ModEntities.java:                         This is where the new Entity gets added to the deferred register ENTITY_TYPES. -ModernMinecarts.java:               The main mod file. Relevant part is at the bottom, where I try to use onClientSetup to register the new Entity using EntityRenderers.register(). That last part is where my problem begins. When I try to register the new entity using EntityRenderers.register(ModEntities.CUSTOM_MINECART_ENTITY.get(), CustomMinecartRenderer::new); I get a syntax Error saying the provided and required types don't match. These are the required and provided types: ModEntities.CUSTOM_MINECART_ENTITY.get(): Required: EntityType<? extends T> Provided:EntityType<CustomMinecartEntity> CustomMinecartRenderer::new: Required: EntityRendererProvider<T> Provided:<method reference   So far I looked at 2 different Git repositories implementing custom entities, but haven't been able to figure out what I'm doing wrong. Any answers, suggestions and ridicules appreciated.
    • Yes, it is. I found out how to do it. (for Forge 1.20.1) Add this to main class constructor: // ... MinecraftForge.EVENT_BUS.<PlayerInteractEvent.EntityInteract>addListener(e -> { Player playerWhoUsed = e.getEntity(); ItemStack usedItemStack = e.getItemStack(); Entity entityThatWasClicked = e.getTarget(); if (usedItemStack.getItem() instanceof YourItem item) { // your code... e.setCancelled(true); // you can remove this if you want to continue interaction } } // ...
    • Hi there, I'm hoping to create a block that renders a fake skybox, blocking anything behind it. There are a couple of mods that already do this, but they are very outdated. One example: https://github.com/Elix-x/Skyblocks/ https://www.curseforge.com/minecraft/mc-mods/skyblocks I'm not familiar enough with rendering to be able to port it. Is there anyone who can point me in the right direction? Any help would be appreciated.
    • I have been having this same stupid problem for almost a week now and cannot figure out what is going on. It works just fine in the single player load but moment it goes into the dedicated server nothing is working. Both have the same mods and exactly same files. There are no datapacks installed in the world folder or any other folder. Is there something I am missing or forgot to do when trying to start it up? It worked just fine at first but after a few days none of the worlds will load. Here is the log report so everyone can see what it is doing. [04Oct2023 08:47:00.553] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 40.2.9, --fml.mcVersion, 1.18.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220404.173914, -nogui, --safeMode] [04Oct2023 08:47:00.562] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 9.1.3+9.1.3+main.9b69c82a starting: java version 20.0.1 by Oracle Corporation [04Oct2023 08:47:00.857] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/H:/Dylani's%20Server%201.18.2/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2314!/ Service=ModLauncher Env=SERVER [04Oct2023 08:47:01.781] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file H:\Dylani's Server 1.18.2\libraries\net\minecraftforge\fmlcore\1.18.2-40.2.9\fmlcore-1.18.2-40.2.9.jar is missing mods.toml file [04Oct2023 08:47:01.789] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file H:\Dylani's Server 1.18.2\libraries\net\minecraftforge\javafmllanguage\1.18.2-40.2.9\javafmllanguage-1.18.2-40.2.9.jar is missing mods.toml file [04Oct2023 08:47:01.792] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file H:\Dylani's Server 1.18.2\libraries\net\minecraftforge\lowcodelanguage\1.18.2-40.2.9\lowcodelanguage-1.18.2-40.2.9.jar is missing mods.toml file [04Oct2023 08:47:01.795] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file H:\Dylani's Server 1.18.2\libraries\net\minecraftforge\mclanguage\1.18.2-40.2.9\mclanguage-1.18.2-40.2.9.jar is missing mods.toml file [04Oct2023 08:47:02.013] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 5 dependencies adding them to mods collection [04Oct2023 08:47:05.818] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 [04Oct2023 08:47:06.058] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [shetiphian.core.mixins.MixinConnector] [04Oct2023 08:47:06.059] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [-nogui, --safeMode] [04Oct2023 08:47:06.071] [main/WARN] [mixin/]: Reference map 'naturalist-forge-forge-refmap.json' for naturalist.mixins.json could not be read. If this is a development environment you can ignore this message [04Oct2023 08:47:06.077] [main/WARN] [mixin/]: Reference map 'nerb-forge-refmap.json' for nerb.mixins.json could not be read. If this is a development environment you can ignore this message [04Oct2023 08:47:06.095] [main/INFO] [Rubidium/]: Loaded configuration file for Rubidium: 28 options available, 0 override(s) found [04Oct2023 08:47:06.111] [main/WARN] [mixin/]: Reference map 'wildbackport-forge-refmap.json' for wildbackport.mixins.json could not be read. If this is a development environment you can ignore this message [04Oct2023 08:47:06.207] [main/WARN] [mixin/]: Reference map 'everycomp.refmap.json' for everycomp.mixins.json could not be read. If this is a development environment you can ignore this message [04Oct2023 08:47:06.241] [main/WARN] [mixin/]: Reference map 'swlm.refmap.json' for swlm.mixins.json could not be read. If this is a development environment you can ignore this message [04Oct2023 08:47:06.254] [main/WARN] [mixin/]: Reference map 'farmersrespite.refmap.json' for farmersrespite.mixins.json could not be read. If this is a development environment you can ignore this message [04Oct2023 08:47:06.296] [main/WARN] [mixin/]: Reference map 'immersive_paintings-common-refmap.json' for immersive_paintings.mixin.json could not be read. If this is a development environment you can ignore this message [04Oct2023 08:47:06.805] [main/INFO] [net.minecraftforge.coremod.CoreMod.uteamcore/COREMODLOG]: Injected ASMUContainerMenuHook call into ServerPlayer#initMenu [04Oct2023 08:47:07.011] [main/FATAL] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/renderer/RenderType for invalid dist DEDICATED_SERVER [04Oct2023 08:47:07.013] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/renderer/RenderType (java.lang.RuntimeException: Attempted to load class net/minecraft/client/renderer/RenderType for invalid dist DEDICATED_SERVER) [04Oct2023 08:47:07.014] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.renderer.RenderType was not found wildbackport-common.mixins.json:access.RenderTypeAccessor [04Oct2023 08:47:07.017] [main/FATAL] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/renderer/Sheets for invalid dist DEDICATED_SERVER [04Oct2023 08:47:07.018] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/renderer/Sheets (java.lang.RuntimeException: Attempted to load class net/minecraft/client/renderer/Sheets for invalid dist DEDICATED_SERVER) [04Oct2023 08:47:07.019] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.renderer.Sheets was not found wildbackport-common.mixins.json:access.SheetsAccessor [04Oct2023 08:47:07.432] [main/FATAL] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/resources/model/ModelBakery for invalid dist DEDICATED_SERVER [04Oct2023 08:47:07.432] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/resources/model/ModelBakery (java.lang.RuntimeException: Attempted to load class net/minecraft/client/resources/model/ModelBakery for invalid dist DEDICATED_SERVER) [04Oct2023 08:47:07.434] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.resources.model.ModelBakery was not found lightspeed.mixins.json:model.ModelBakeryMixin [04Oct2023 08:47:11.027] [main/INFO] [Diagonal Fences/]: Constructing shapes for nodeWith 2.0, extensionWidth 2.0, nodeHeight 24.0, extensionBottom 0.0, extensionHeight 24.0 took 114 milliseconds [04Oct2023 08:47:11.144] [main/INFO] [Diagonal Fences/]: Constructing shapes for nodeWith 2.0, extensionWidth 2.0, nodeHeight 16.0, extensionBottom 0.0, extensionHeight 16.0 took 116 milliseconds [04Oct2023 08:47:11.323] [main/INFO] [Diagonal Fences/]: Constructing shapes for nodeWith 2.0, extensionWidth 1.0, nodeHeight 16.0, extensionBottom 6.0, extensionHeight 15.0 took 172 milliseconds [04Oct2023 08:47:12.919] [main/INFO] [net.minecraftforge.coremod.CoreMod.uteamcore/COREMODLOG]: Injected ASMUContainerMenuHook call into ServerPlayer#initMenu [04Oct2023 08:47:18.711] [modloading-worker-0/INFO] [Easy NPC/]: Thanks for using Easy NPC (https://www.curseforge.com/minecraft/mc-mods/easy-npc). I hope you enjoy the mod. :) [04Oct2023 08:47:18.795] [modloading-worker-0/INFO] [Easy NPC/]: 🗣 Register Easy NPC Entities ... [04Oct2023 08:47:18.838] [modloading-worker-0/INFO] [Easy NPC/]: 🗣 Register Easy NPC Items ... [04Oct2023 08:47:18.870] [modloading-worker-0/INFO] [Easy NPC/]: 🗣 Register Easy NPC Menu Types ... [04Oct2023 08:47:18.880] [modloading-worker-0/INFO] [Easy NPC/]: 🗣 Register Easy NPC custom data ... [04Oct2023 08:47:18.883] [modloading-worker-0/INFO] [Easy NPC/]: 🗣 Create Easy NPC custom data folder at H:\Dylani's Server 1.18.2\config\easy_npc ... [04Oct2023 08:47:18.924] [modloading-worker-0/WARN] [net.minecraftforge.eventbus.EventBus/EVENTBUS]: Attempting to add a Lambda listener with computed generic type of Event. Are you sure this is what you meant? NOTE : there are complex lambda forms where the generic type information is erased and cannot be recovered at runtime. [04Oct2023 08:47:19.070] [modloading-worker-0/INFO] [JarSignVerifier/]: Mod uteamcore is signed with a valid certificate. [04Oct2023 08:47:19.308] [modloading-worker-0/INFO] [JarSignVerifier/]: Mod usefulbackpacks is signed with a valid certificate. [04Oct2023 08:47:19.321] [modloading-worker-0/INFO] [Easy NPC/]: Registering Easy NPC common config ... [04Oct2023 08:47:19.331] [modloading-worker-0/INFO] [Easy NPC/]: Registering Easy NPC client config ... [04Oct2023 08:47:19.429] [modloading-worker-0/INFO] [dev.wuffs.bcc.BCC/]: Better Compatibility Checker loading [04Oct2023 08:47:20.002] [modloading-worker-0/INFO] [Collective/]: Loading Collective version 6.65. [04Oct2023 08:47:20.085] [modloading-worker-0/WARN] [com.memorysettings.MemorysettingsMod/]: You have more memory allocated(12288mb) than recommended for this pack, the maximum is: 8500mb. The recommended amount for your system is: 8500 mb. [04Oct2023 08:47:20.934] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id architectury:sync_ids [04Oct2023 08:47:21.394] [modloading-worker-0/WARN] [fallingleaves/]: Falling Leaves is a client only mod and should be removed from the mods list [04Oct2023 08:47:21.499] [modloading-worker-0/ERROR] [toastcontrol/]: Running on a dedicated server, disabling mod. [04Oct2023 08:47:21.510] [modloading-worker-0/INFO] [com.refinedmods.refinedstorage.apiimpl.API/]: Found 1 RS API injection point [04Oct2023 08:47:21.525] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 40.2.9, for MC 1.18.2 with MCP 20220404.173914 [04Oct2023 08:47:21.526] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v40.2.9 Initialized [04Oct2023 08:47:21.529] [modloading-worker-0/INFO] [com.refinedmods.refinedstorage.apiimpl.API/]: Injected RS API in com.refinedmods.refinedstorageaddons.RSAddons RSAPI [04Oct2023 08:47:21.588] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id itemfilters:main/14e7fa1454283aec8ae811ef844ada28 [04Oct2023 08:47:21.599] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id itemfilters:main/8f6a899247753217b9d86ab427a2b279 [04Oct2023 08:47:22.944] [modloading-worker-0/INFO] [com.tterrag.registrate.AbstractRegistrate/]: Detected new forge version, registering events reflectively. [04Oct2023 08:47:23.412] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.SpiralSpiresModule [04Oct2023 08:47:23.601] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.PermafrostModule [04Oct2023 08:47:23.609] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.NoMoreLavaPocketsModule [04Oct2023 08:47:23.615] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.NewStoneTypesModule [04Oct2023 08:47:23.626] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.NetherObsidianSpikesModule [04Oct2023 08:47:23.631] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.MonsterBoxModule [04Oct2023 08:47:23.644] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.GlimmeringWealdModule [04Oct2023 08:47:23.698] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.FairyRingsModule [04Oct2023 08:47:23.707] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.CorundumModule [04Oct2023 08:47:23.726] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.ChorusVegetationModule [04Oct2023 08:47:23.771] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.BlossomTreesModule [04Oct2023 08:47:23.787] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.BigStoneClustersModule [04Oct2023 08:47:23.810] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.BigDungeonModule [04Oct2023 08:47:23.830] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.AzaleaWoodModule [04Oct2023 08:47:23.836] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.VillagersFollowEmeraldsModule [04Oct2023 08:47:23.841] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.VexesDieWithTheirMastersModule [04Oct2023 08:47:23.863] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.UtilityRecipesModule [04Oct2023 08:47:23.892] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SnowGolemPlayerHeadsModule [04Oct2023 08:47:23.900] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SimpleHarvestModule [04Oct2023 08:47:23.910] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SignEditingModule [04Oct2023 08:47:23.937] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ReplaceScaffoldingModule [04Oct2023 08:47:23.946] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ReacharoundPlacingModule [04Oct2023 08:47:24.023] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.PoisonPotatoUsageModule [04Oct2023 08:47:24.030] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.PigLittersModule [04Oct2023 08:47:24.037] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.PatTheDogsModule [04Oct2023 08:47:24.077] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.NoteBlockMobSoundsModule [04Oct2023 08:47:24.083] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.MoreBannerLayersModule [04Oct2023 08:47:24.090] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.LockRotationModule [04Oct2023 08:47:24.095] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.HoeHarvestingModule [04Oct2023 08:47:24.102] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.GrabChickensModule [04Oct2023 08:47:24.109] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.GlassShardModule [04Oct2023 08:47:24.124] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.EnhancedLaddersModule [04Oct2023 08:47:24.147] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.EmotesModule [04Oct2023 08:47:24.154] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.DragonScalesModule [04Oct2023 08:47:24.160] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.DoubleDoorOpeningModule [04Oct2023 08:47:24.165] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.CompassesWorkEverywhereModule [04Oct2023 08:47:24.172] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.CampfiresBoostElytraModule [04Oct2023 08:47:24.191] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.BetterElytraRocketModule [04Oct2023 08:47:24.191] [modloading-worker-0/INFO] [com.tterrag.registrate.AbstractRegistrate/]: Detected new forge version, registering events reflectively. [04Oct2023 08:47:24.198] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.AutomaticRecipeUnlockModule [04Oct2023 08:47:24.350] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ArmedArmorStandsModule [04Oct2023 08:47:24.358] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.TrowelModule [04Oct2023 08:47:24.364] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.SlimeInABucketModule [04Oct2023 08:47:24.426] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.SkullPikesModule [04Oct2023 08:47:24.432] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for diagonalfences:main [04Oct2023 08:47:24.432] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for puzzleslib:main [04Oct2023 08:47:24.437] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.SeedPouchModule [04Oct2023 08:47:24.469] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.PickarangModule [04Oct2023 08:47:24.487] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.PathfinderMapsModule [04Oct2023 08:47:24.496] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.ParrotEggsModule [04Oct2023 08:47:24.503] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.EndermoshMusicDiscModule [04Oct2023 08:47:24.515] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.ColorRunesModule [04Oct2023 08:47:24.619] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.CameraModule [04Oct2023 08:47:24.629] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.BundleRecipeModule [04Oct2023 08:47:24.634] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.BottledCloudModule [04Oct2023 08:47:24.654] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.BeaconRedirectionModule [04Oct2023 08:47:24.667] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.AncientTomesModule [04Oct2023 08:47:24.679] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.AmbientDiscsModule [04Oct2023 08:47:24.685] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.AbacusModule [04Oct2023 08:47:24.705] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.WraithModule [04Oct2023 08:47:24.723] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.ToretoiseModule [04Oct2023 08:47:24.744] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.StonelingsModule [04Oct2023 08:47:24.752] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.ShibaModule [04Oct2023 08:47:24.777] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.FrogsModule [04Oct2023 08:47:24.782] [modloading-worker-0/INFO] [net.mehvahdjukaar.every_compat.WoodGood/]: Loaded EveryCompat Mcwdoors Module [04Oct2023 08:47:24.782] [modloading-worker-0/INFO] [net.mehvahdjukaar.every_compat.WoodGood/]: Loaded EveryCompat Mcwfurnitures Module [04Oct2023 08:47:24.785] [modloading-worker-0/INFO] [net.mehvahdjukaar.every_compat.WoodGood/]: Loaded EveryCompat Mcwtrpdoors Module [04Oct2023 08:47:24.786] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.FoxhoundModule [04Oct2023 08:47:24.786] [modloading-worker-0/INFO] [net.mehvahdjukaar.every_compat.WoodGood/]: Loaded EveryCompat Mcwwindows Module [04Oct2023 08:47:24.787] [modloading-worker-0/INFO] [net.mehvahdjukaar.every_compat.WoodGood/]: Loaded EveryCompat Mcwfences Module [04Oct2023 08:47:24.788] [modloading-worker-0/INFO] [net.mehvahdjukaar.every_compat.WoodGood/]: Loaded EveryCompat Cfm Module [04Oct2023 08:47:24.791] [modloading-worker-0/INFO] [net.mehvahdjukaar.every_compat.WoodGood/]: Loaded EveryCompat Farmersdelight Module [04Oct2023 08:47:24.792] [modloading-worker-0/INFO] [net.mehvahdjukaar.every_compat.WoodGood/]: Loaded EveryCompat Create Module [04Oct2023 08:47:24.792] [modloading-worker-0/INFO] [net.mehvahdjukaar.every_compat.WoodGood/]: Loaded EveryCompat Quark Module [04Oct2023 08:47:24.795] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.ForgottenModule [04Oct2023 08:47:24.809] [modloading-worker-0/INFO] [mod.chiselsandbits.registrars.ModBlockEntityTypes/]: Loaded block entity configuration. [04Oct2023 08:47:24.813] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.CrabsModule [04Oct2023 08:47:24.818] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.QuickArmorSwappingModule [04Oct2023 08:47:24.828] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.ItemSharingModule [04Oct2023 08:47:24.832] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.InventorySortingModule [04Oct2023 08:47:24.851] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.HotbarChangerModule [04Oct2023 08:47:24.862] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.ExpandedItemInteractionsModule [04Oct2023 08:47:24.876] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.EasyTransferingModule [04Oct2023 08:47:24.883] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.ChestsInBoatsModule [04Oct2023 08:47:24.890] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.ZombieVillagersOnNormalModule [04Oct2023 08:47:24.897] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.SpawnerReplacerModule [04Oct2023 08:47:24.901] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.OverlayShaderModule [04Oct2023 08:47:24.905] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.NarratorReadoutModule [04Oct2023 08:47:24.918] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.GameNerfsModule [04Oct2023 08:47:24.926] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.EnchantmentsBegoneModule [04Oct2023 08:47:24.930] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.AdjustableChatModule [04Oct2023 08:47:24.935] [modloading-worker-0/INFO] [mod.chiselsandbits.registrars.ModBlocks/]: Loaded block configuration. [04Oct2023 08:47:24.935] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.VariantAnimalTexturesModule [04Oct2023 08:47:24.942] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.UsesForCursesModule [04Oct2023 08:47:24.947] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.UsageTickerModule [04Oct2023 08:47:24.954] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.SoulCandlesModule [04Oct2023 08:47:24.960] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.MicrocraftingHelperModule [04Oct2023 08:47:24.968] [modloading-worker-0/INFO] [mod.chiselsandbits.registrars.ModChiselModeGroups/]: Loaded chisel mode group configuration. [04Oct2023 08:47:25.044] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.ImprovedTooltipsModule [04Oct2023 08:47:25.048] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.GreenerGrassModule [04Oct2023 08:47:25.058] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.ChestSearchingModule [04Oct2023 08:47:25.062] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.BackButtonKeybind [04Oct2023 08:47:25.066] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.AutoWalkKeybindModule [04Oct2023 08:47:25.070] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.WoodenPostsModule [04Oct2023 08:47:25.074] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VerticalSlabsModule [04Oct2023 08:47:25.080] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VerticalPlanksModule [04Oct2023 08:47:25.081] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VariantLaddersModule [04Oct2023 08:47:25.088] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VariantFurnacesModule [04Oct2023 08:47:25.093] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VariantChestsModule [04Oct2023 08:47:25.161] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VariantBookshelvesModule [04Oct2023 08:47:25.206] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.ThatchModule [04Oct2023 08:47:25.211] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.SturdyStoneModule [04Oct2023 08:47:25.215] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.StoolsModule [04Oct2023 08:47:25.223] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.SoulSandstoneModule [04Oct2023 08:47:25.229] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.ShinglesModule [04Oct2023 08:47:25.234] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.ShearVinesModule [04Oct2023 08:47:25.255] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.RopeModule [04Oct2023 08:47:25.262] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.OrientalPaletteModule [04Oct2023 08:47:25.266] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.NetherBrickFenceGateModule [04Oct2023 08:47:25.274] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MoreStoneVariantsModule [04Oct2023 08:47:25.278] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MorePottedPlantsModule [04Oct2023 08:47:25.283] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MoreBrickTypesModule [04Oct2023 08:47:25.288] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MidoriModule [04Oct2023 08:47:25.339] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.LeafCarpetModule [04Oct2023 08:47:25.341] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.IndustrialPaletteModule [04Oct2023 08:47:25.343] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.HedgesModule [04Oct2023 08:47:25.346] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.GrateModule [04Oct2023 08:47:25.353] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.GoldBarsModule [04Oct2023 08:47:25.359] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.GlassItemFrameModule [04Oct2023 08:47:25.370] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.FramedGlassModule [04Oct2023 08:47:25.381] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.DuskboundBlocksModule [04Oct2023 08:47:25.388] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.CompressedBlocksModule [04Oct2023 08:47:25.396] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.CelebratoryLampsModule [04Oct2023 08:47:25.400] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.RedstoneRandomizerModule [04Oct2023 08:47:25.412] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.PistonsMoveTileEntitiesModule [04Oct2023 08:47:25.416] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.ObsidianPlateModule [04Oct2023 08:47:25.468] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.MetalButtonsModule [04Oct2023 08:47:25.473] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.JukeboxAutomationModule [04Oct2023 08:47:25.477] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.IronRodModule [04Oct2023 08:47:25.490] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.GravisandModule [04Oct2023 08:47:25.500] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.FeedingTroughModule [04Oct2023 08:47:25.510] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.EnderWatcherModule [04Oct2023 08:47:25.516] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.DispensersPlaceBlocksModule [04Oct2023 08:47:25.521] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.ChuteModule [04Oct2023 08:47:25.527] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.ChainsConnectBlocksModule [04Oct2023 08:47:25.533] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.TotemOfHoldingModule [04Oct2023 08:47:25.592] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.TinyPotatoModule [04Oct2023 08:47:25.606] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.PipesModule [04Oct2023 08:47:25.619] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.MatrixEnchantingModule [04Oct2023 08:47:25.625] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.MagnetsModule [04Oct2023 08:47:25.634] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.CrateModule [04Oct2023 08:47:25.642] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.BackpackModule [04Oct2023 08:47:25.721] [modloading-worker-0/INFO] [quark/]: Dispatching Module Step CONSTRUCT [04Oct2023 08:47:26.319] [modloading-worker-0/INFO] [mod.chiselsandbits.registrars.ModChiselModes/]: Loaded chisel mode configuration. [04Oct2023 08:47:26.391] [modloading-worker-0/INFO] [mod.chiselsandbits.registrars.ModContainerTypes/]: Loaded container type configuration. [04Oct2023 08:47:26.404] [modloading-worker-0/INFO] [mod.chiselsandbits.registrars.ModCreativeTabs/]: Loaded item group configuration. [04Oct2023 08:47:26.610] [modloading-worker-0/INFO] [mod.chiselsandbits.registrars.ModItems/]: Loaded item configuration. [04Oct2023 08:47:26.636] [modloading-worker-0/INFO] [mod.chiselsandbits.registrars.ModMetadataKeys/]: Loaded metadata key configuration. [04Oct2023 08:47:26.686] [modloading-worker-0/INFO] [mod.chiselsandbits.registrars.ModModelProperties/]: Loaded model property configuration. [04Oct2023 08:47:26.715] [modloading-worker-0/INFO] [mod.chiselsandbits.registrars.ModModificationOperation/]: Loaded modification operation configuration. [04Oct2023 08:47:26.732] [modloading-worker-0/INFO] [mod.chiselsandbits.registrars.ModModificationOperationGroups/]: Loaded modification operation group configuration. [04Oct2023 08:47:26.771] [modloading-worker-0/INFO] [mod.chiselsandbits.registrars.ModPatternPlacementTypes/]: Loaded pattern placement type configuration. [04Oct2023 08:47:26.794] [modloading-worker-0/INFO] [mod.chiselsandbits.registrars.ModRecipeSerializers/]: Loaded recipe serializer configuration. [04Oct2023 08:47:26.809] [modloading-worker-0/INFO] [mod.chiselsandbits.registrars.ModTags/]: Loaded tag configuration. [04Oct2023 08:47:26.911] [modloading-worker-0/INFO] [mod.chiselsandbits.forge.platform.plugin.ForgePluginManager/]: Found and loaded ChiselsAndBits plugin: jei [04Oct2023 08:47:26.917] [modloading-worker-0/INFO] [mod.chiselsandbits.forge.integration.jei.JEICompatConfiguration/]: Loaded JEI Compatibility configuration [04Oct2023 08:47:27.014] [modloading-worker-0/INFO] [thedarkcolour.kotlinforforge.test.KotlinForForge/]: Kotlin For Forge Enabled! [04Oct2023 08:47:43.378] [main/INFO] [com.alaharranhonor.swlm.SWLM/]: Loading Blocks for 1 addons [04Oct2023 08:47:43.378] [main/INFO] [com.alaharranhonor.swlm.SWLM/]: Loading LM Blocks for swdm [04Oct2023 08:47:43.380] [main/INFO] [com.alaharranhonor.swlm.SWLM/]: Loaded 414 LM Blocks for swdm [04Oct2023 08:47:43.391] [main/INFO] [com.alaharranhonor.swlm.SWLM/]: Registered 414 addon blocks [04Oct2023 08:47:43.483] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `placeableitems` for name `leather_helmet_pi`, expected `swem`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:43.484] [main/INFO] [quark/]: Dispatching Module Step REGISTER [04Oct2023 08:47:43.802] [main/INFO] [quark/]: Dispatching Module Step POST_REGISTER [04Oct2023 08:47:44.158] [main/INFO] [net.mehvahdjukaar.every_compat.WoodGood/]: Registering Compat Wood Blocks [04Oct2023 08:47:46.724] [main/INFO] [net.mehvahdjukaar.every_compat.WoodGood/]: Registering Compat Leaves Blocks [04Oct2023 08:47:46.786] [main/INFO] [net.mehvahdjukaar.every_compat.WoodGood/]: Registered 4712 compat blocks making up 26.597425% of total blocks registered [04Oct2023 08:47:46.894] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `shulker_shell`, expected `supplementaries`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.285] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `white_wool`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.285] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `orange_wool`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.287] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `magenta_wool`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.287] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `light_blue_wool`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.288] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `yellow_wool`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.288] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `lime_wool`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.288] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `pink_wool`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.289] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `gray_wool`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.289] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `light_gray_wool`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.290] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `cyan_wool`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.290] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `purple_wool`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.291] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `blue_wool`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.292] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `brown_wool`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.292] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `green_wool`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.293] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `red_wool`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.293] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `black_wool`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.301] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `oak_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.301] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `spruce_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.302] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `birch_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.302] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `jungle_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.303] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `acacia_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.303] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `dark_oak_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.304] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `crimson_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.304] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `warped_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.305] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `biomesoplenty` for name `cherry_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.307] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `biomesoplenty` for name `umbran_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.307] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `biomesoplenty` for name `fir_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.307] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `biomesoplenty` for name `dead_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.308] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `biomesoplenty` for name `magic_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.308] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `biomesoplenty` for name `palm_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.309] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `biomesoplenty` for name `redwood_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.309] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `biomesoplenty` for name `willow_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.310] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `biomesoplenty` for name `hellbark_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.310] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `biomesoplenty` for name `jacaranda_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.311] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `biomesoplenty` for name `mahogany_planks`, expected `doggytalents`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.593] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityActionData [04Oct2023 08:47:47.593] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityActionData [04Oct2023 08:47:47.594] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityAttackData [04Oct2023 08:47:47.597] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityDialogData [04Oct2023 08:47:47.598] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityDialogData [04Oct2023 08:47:47.599] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityDialogData [04Oct2023 08:47:47.599] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityDialogData [04Oct2023 08:47:47.600] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityDialogData [04Oct2023 08:47:47.600] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityDialogData [04Oct2023 08:47:47.601] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.601] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.602] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.602] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.603] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.605] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.606] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.606] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.607] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.607] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.607] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.608] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.608] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.609] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.609] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.610] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.610] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.610] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.611] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.611] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.612] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.612] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.613] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.618] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityModelData [04Oct2023 08:47:47.619] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityOwnerData [04Oct2023 08:47:47.619] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityScaleData [04Oct2023 08:47:47.620] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityScaleData [04Oct2023 08:47:47.620] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntityScaleData [04Oct2023 08:47:47.620] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntitySkinData [04Oct2023 08:47:47.621] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntitySkinData [04Oct2023 08:47:47.621] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntitySkinData [04Oct2023 08:47:47.622] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class de.markusbordihn.easynpc.entity.EasyNPCEntityData from interface de.markusbordihn.easynpc.entity.data.EntitySkinData [04Oct2023 08:47:47.784] [main/ERROR] [net.minecraftforge.registries.ObjectHolderRegistry/]: java.lang.RuntimeException: Failed to apply some object holders, see suppressed exceptions for details at net.minecraftforge.registries.ObjectHolderRegistry.applyObjectHolders(ObjectHolderRegistry.java:174) ~[forge-1.18.2-40.2.9-universal.jar%23176!/:?] at net.minecraftforge.registries.GameData.applyHolderLookups(GameData.java:384) ~[forge-1.18.2-40.2.9-universal.jar%23176!/:?] at net.minecraftforge.registries.GameData.lambda$postRegistryEventDispatch$19(GameData.java:377) ~[forge-1.18.2-40.2.9-universal.jar%23176!/:?] at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] at net.minecraftforge.fml.ModWorkManager$SyncExecutor.driveOne(ModWorkManager.java:42) ~[fmlcore-1.18.2-40.2.9.jar%23172!/:?] at net.minecraftforge.fml.ModWorkManager$DrivenExecutor.drive(ModWorkManager.java:26) ~[fmlcore-1.18.2-40.2.9.jar%23172!/:?] at net.minecraftforge.fml.ModLoader.waitForTransition(ModLoader.java:202) ~[fmlcore-1.18.2-40.2.9.jar%23172!/:?] at net.minecraftforge.fml.ModLoader.lambda$dispatchAndHandleError$21(ModLoader.java:187) ~[fmlcore-1.18.2-40.2.9.jar%23172!/:?] at java.util.Optional.ifPresent(Optional.java:178) ~[?:?] at net.minecraftforge.fml.ModLoader.dispatchAndHandleError(ModLoader.java:187) ~[fmlcore-1.18.2-40.2.9.jar%23172!/:?] at net.minecraftforge.fml.ModLoader.lambda$gatherAndInitializeMods$11(ModLoader.java:164) ~[fmlcore-1.18.2-40.2.9.jar%23172!/:?] at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] at net.minecraftforge.fml.ModLoader.gatherAndInitializeMods(ModLoader.java:164) ~[fmlcore-1.18.2-40.2.9.jar%23172!/:?] at net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:32) ~[forge-1.18.2-40.2.9-universal.jar%23176!/:?] at net.minecraft.server.Main.main(Main.java:112) ~[server-1.18.2-20220404.173914-srg.jar%23171!/:?] at jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:578) ~[?:?] at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:32) ~[fmlloader-1.18.2-40.2.9.jar%2318!/:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] Suppressed: java.lang.NullPointerException at net.minecraftforge.common.util.LogicalSidedProvider.get(LogicalSidedProvider.java:47) ~[forge-1.18.2-40.2.9-universal.jar%23176!/:?] at de.mennomax.astikorcarts.CommonInitializer$1.accept(CommonInitializer.java:41) ~[astikorcarts-1.18.2-1.1.2.jar%2343!/:1.1.2] at de.mennomax.astikorcarts.CommonInitializer$1.accept(CommonInitializer.java:33) ~[astikorcarts-1.18.2-1.1.2.jar%2343!/:1.1.2] at net.minecraftforge.registries.ObjectHolderRegistry.lambda$applyObjectHolders$10(ObjectHolderRegistry.java:178) ~[forge-1.18.2-40.2.9-universal.jar%23176!/:?] at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] at net.minecraftforge.registries.ObjectHolderRegistry.applyObjectHolders(ObjectHolderRegistry.java:175) ~[forge-1.18.2-40.2.9-universal.jar%23176!/:?] at net.minecraftforge.registries.GameData.applyHolderLookups(GameData.java:384) ~[forge-1.18.2-40.2.9-universal.jar%23176!/:?] at net.minecraftforge.registries.GameData.lambda$postRegistryEventDispatch$19(GameData.java:377) ~[forge-1.18.2-40.2.9-universal.jar%23176!/:?] at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] at net.minecraftforge.fml.ModWorkManager$SyncExecutor.driveOne(ModWorkManager.java:42) ~[fmlcore-1.18.2-40.2.9.jar%23172!/:?] at net.minecraftforge.fml.ModWorkManager$DrivenExecutor.drive(ModWorkManager.java:26) ~[fmlcore-1.18.2-40.2.9.jar%23172!/:?] at net.minecraftforge.fml.ModLoader.waitForTransition(ModLoader.java:202) ~[fmlcore-1.18.2-40.2.9.jar%23172!/:?] at net.minecraftforge.fml.ModLoader.lambda$dispatchAndHandleError$21(ModLoader.java:187) ~[fmlcore-1.18.2-40.2.9.jar%23172!/:?] at java.util.Optional.ifPresent(Optional.java:178) ~[?:?] at net.minecraftforge.fml.ModLoader.dispatchAndHandleError(ModLoader.java:187) ~[fmlcore-1.18.2-40.2.9.jar%23172!/:?] at net.minecraftforge.fml.ModLoader.lambda$gatherAndInitializeMods$11(ModLoader.java:164) ~[fmlcore-1.18.2-40.2.9.jar%23172!/:?] at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] at net.minecraftforge.fml.ModLoader.gatherAndInitializeMods(ModLoader.java:164) ~[fmlcore-1.18.2-40.2.9.jar%23172!/:?] at net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:32) ~[forge-1.18.2-40.2.9-universal.jar%23176!/:?] at net.minecraft.server.Main.main(Main.java:112) ~[server-1.18.2-20220404.173914-srg.jar%23171!/:?] at jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:578) ~[?:?] at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:32) ~[fmlloader-1.18.2-40.2.9.jar%2318!/:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] [04Oct2023 08:47:47.818] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `milk`, expected `forge`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:47.819] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `flowing_milk`, expected `forge`. This could be a intended override, but in most cases indicates a broken mod. [04Oct2023 08:47:48.139] [main/INFO] [mod.chiselsandbits.registrars.ModRecipeTypes/]: Registering recipe types. [04Oct2023 08:47:48.730] [main/INFO] [quark/]: Loading Module Redstone Randomizer [04Oct2023 08:47:48.731] [main/INFO] [quark/]: Loading Module Pistons Move Tile Entities [04Oct2023 08:47:48.733] [main/INFO] [quark/]: Loading Module Obsidian Plate [04Oct2023 08:47:48.733] [main/INFO] [quark/]: Loading Module Metal Buttons [04Oct2023 08:47:48.733] [main/INFO] [quark/]: Loading Module Jukebox Automation [04Oct2023 08:47:48.735] [main/INFO] [quark/]: Loading Module Iron Rod [04Oct2023 08:47:48.736] [main/INFO] [quark/]: Loading Module Gravisand [04Oct2023 08:47:48.736] [main/INFO] [quark/]: Loading Module Feeding Trough [04Oct2023 08:47:48.737] [main/INFO] [quark/]: Loading Module Ender Watcher [04Oct2023 08:47:48.737] [main/INFO] [quark/]: Loading Module Dispensers Place Blocks [04Oct2023 08:47:48.738] [main/INFO] [quark/]: Loading Module Chute [04Oct2023 08:47:48.738] [main/INFO] [quark/]: Loading Module Chains Connect Blocks [04Oct2023 08:47:48.738] [main/INFO] [quark/]: Loading Module Wooden Posts [04Oct2023 08:47:48.739] [main/INFO] [quark/]: Loading Module Vertical Slabs [04Oct2023 08:47:48.740] [main/INFO] [quark/]: Loading Module Vertical Planks [04Oct2023 08:47:48.742] [main/INFO] [quark/]: Loading Module Variant Ladders [04Oct2023 08:47:48.742] [main/INFO] [quark/]: Loading Module Variant Furnaces [04Oct2023 08:47:48.742] [main/INFO] [quark/]: Loading Module Variant Chests [04Oct2023 08:47:48.745] [main/INFO] [quark/]: Loading Module Variant Bookshelves [04Oct2023 08:47:48.746] [main/INFO] [quark/]: Loading Module Thatch [04Oct2023 08:47:48.746] [main/INFO] [quark/]: Loading Module Sturdy Stone [04Oct2023 08:47:48.747] [main/INFO] [quark/]: Loading Module Stools [04Oct2023 08:47:48.748] [main/INFO] [quark/]: Loading Module Soul Sandstone [04Oct2023 08:47:48.748] [main/INFO] [quark/]: Loading Module Shingles [04Oct2023 08:47:48.749] [main/INFO] [quark/]: Loading Module Shear Vines [04Oct2023 08:47:48.750] [main/INFO] [quark/]: Loading Module Rope [04Oct2023 08:47:48.752] [main/INFO] [quark/]: Loading Module Oriental Palette [04Oct2023 08:47:48.752] [main/INFO] [quark/]: Loading Module Nether Brick Fence Gate [04Oct2023 08:47:48.753] [main/INFO] [quark/]: Loading Module More Stone Variants [04Oct2023 08:47:48.754] [main/INFO] [quark/]: Loading Module More Potted Plants [04Oct2023 08:47:48.754] [main/INFO] [quark/]: Loading Module More Brick Types [04Oct2023 08:47:48.755] [main/INFO] [quark/]: Loading Module Midori [04Oct2023 08:47:48.756] [main/INFO] [quark/]: Loading Module Leaf Carpet [04Oct2023 08:47:48.756] [main/INFO] [quark/]: Loading Module Industrial Palette [04Oct2023 08:47:48.757] [main/INFO] [quark/]: Loading Module Hedges [04Oct2023 08:47:48.757] [main/INFO] [quark/]: Loading Module Grate [04Oct2023 08:47:48.758] [main/INFO] [quark/]: Loading Module Gold Bars [04Oct2023 08:47:48.759] [main/INFO] [quark/]: Loading Module Glass Item Frame [04Oct2023 08:47:48.759] [main/INFO] [quark/]: Loading Module Framed Glass [04Oct2023 08:47:48.760] [main/INFO] [quark/]: Loading Module Duskbound Blocks [04Oct2023 08:47:48.762] [main/INFO] [quark/]: Loading Module Compressed Blocks [04Oct2023 08:47:48.763] [main/INFO] [quark/]: Loading Module Celebratory Lamps [04Oct2023 08:47:48.763] [main/INFO] [quark/]: Loading Module Quick Armor Swapping [04Oct2023 08:47:48.764] [main/INFO] [quark/]: Loading Module Item Sharing [04Oct2023 08:47:48.764] [main/INFO] [quark/]: Loading Module Inventory Sorting [04Oct2023 08:47:48.765] [main/INFO] [quark/]: Loading Module Hotbar Changer [04Oct2023 08:47:48.765] [main/INFO] [quark/]: Loading Module Expanded Item Interactions [04Oct2023 08:47:48.766] [main/INFO] [quark/]: Loading Module Easy Transfering [04Oct2023 08:47:48.766] [main/INFO] [quark/]: Loading Module Chests In Boats [04Oct2023 08:47:48.768] [main/INFO] [quark/]: Loading Module Trowel [04Oct2023 08:47:48.768] [main/INFO] [quark/]: Loading Module Slime In A Bucket [04Oct2023 08:47:48.769] [main/INFO] [quark/]: Loading Module Seed Pouch [04Oct2023 08:47:48.770] [main/INFO] [quark/]: Loading Module Pickarang [04Oct2023 08:47:48.771] [main/INFO] [quark/]: Loading Module Pathfinder Maps [04Oct2023 08:47:48.772] [main/INFO] [quark/]: Loading Module Parrot Eggs [04Oct2023 08:47:48.773] [main/INFO] [quark/]: Loading Module Endermosh Music Disc [04Oct2023 08:47:48.775] [main/INFO] [quark/]: Loading Module Color Runes [04Oct2023 08:47:48.776] [main/INFO] [quark/]: Loading Module Camera [04Oct2023 08:47:48.776] [main/INFO] [quark/]: Loading Module Bundle Recipe [04Oct2023 08:47:48.776] [main/INFO] [quark/]: Loading Module Bottled Cloud [04Oct2023 08:47:48.777] [main/INFO] [quark/]: Loading Module Beacon Redirection [04Oct2023 08:47:48.777] [main/INFO] [quark/]: Loading Module Ancient Tomes [04Oct2023 08:47:48.782] [main/INFO] [quark/]: Loading Module Ambient Discs [04Oct2023 08:47:48.783] [main/INFO] [quark/]: Loading Module Abacus [04Oct2023 08:47:48.783] [main/INFO] [quark/]: Loading Module Villagers Follow Emeralds [04Oct2023 08:47:48.785] [main/INFO] [quark/]: Loading Module Vexes Die With Their Masters [04Oct2023 08:47:48.786] [main/INFO] [quark/]: Loading Module Utility Recipes [04Oct2023 08:47:48.787] [main/INFO] [quark/]: Loading Module Snow Golem Player Heads [04Oct2023 08:47:48.787] [main/INFO] [quark/]: Loading Module Simple Harvest [04Oct2023 08:47:48.788] [main/INFO] [quark/]: Loading Module Sign Editing [04Oct2023 08:47:48.789] [main/INFO] [quark/]: Loading Module Replace Scaffolding [04Oct2023 08:47:48.790] [main/INFO] [quark/]: Loading Module Reacharound Placing [04Oct2023 08:47:48.791] [main/INFO] [quark/]: Loading Module Poison Potato Usage [04Oct2023 08:47:48.792] [main/INFO] [quark/]: Loading Module Pig Litters [04Oct2023 08:47:48.793] [main/INFO] [quark/]: Loading Module Pat The Dogs [04Oct2023 08:47:48.794] [main/INFO] [quark/]: Loading Module Note Block Mob Sounds [04Oct2023 08:47:48.794] [main/INFO] [quark/]: Loading Module More Banner Layers [04Oct2023 08:47:48.794] [main/INFO] [quark/]: Loading Module Lock Rotation [04Oct2023 08:47:48.796] [main/INFO] [quark/]: Loading Module Hoe Harvesting [04Oct2023 08:47:48.797] [main/INFO] [quark/]: Loading Module Grab Chickens [04Oct2023 08:47:48.797] [main/INFO] [quark/]: Loading Module Glass Shard [04Oct2023 08:47:48.798] [main/INFO] [quark/]: Loading Module Enhanced Ladders [04Oct2023 08:47:48.800] [main/INFO] [quark/]: Loading Module Emotes [04Oct2023 08:47:48.800] [main/INFO] [quark/]: Loading Module Dragon Scales [04Oct2023 08:47:48.801] [main/INFO] [quark/]: Loading Module Double Door Opening [04Oct2023 08:47:48.802] [main/INFO] [quark/]: Loading Module Compasses Work Everywhere [04Oct2023 08:47:48.802] [main/INFO] [quark/]: Loading Module Campfires Boost Elytra [04Oct2023 08:47:48.803] [main/INFO] [quark/]: Loading Module Better Elytra Rocket [04Oct2023 08:47:48.804] [main/INFO] [quark/]: Loading Module Automatic Recipe Unlock [04Oct2023 08:47:48.804] [main/INFO] [quark/]: Loading Module Armed Armor Stands [04Oct2023 08:47:48.805] [main/INFO] [quark/]: Loading Module Skull Pikes [04Oct2023 08:47:48.806] [main/INFO] [quark/]: Loading Module Spiral Spires [04Oct2023 08:47:48.807] [main/INFO] [quark/]: Loading Module Permafrost [04Oct2023 08:47:48.807] [main/INFO] [quark/]: Loading Module No More Lava Pockets [04Oct2023 08:47:48.808] [main/INFO] [quark/]: Loading Module New Stone Types [04Oct2023 08:47:48.810] [main/INFO] [quark/]: Loading Module Nether Obsidian Spikes [04Oct2023 08:47:48.810] [main/INFO] [quark/]: Loading Module Monster Box [04Oct2023 08:47:48.812] [main/INFO] [quark/]: Loading Module Glimmering Weald [04Oct2023 08:47:48.812] [main/INFO] [quark/]: Loading Module Fairy Rings [04Oct2023 08:47:48.812] [main/INFO] [quark/]: Loading Module Corundum [04Oct2023 08:47:48.813] [main/INFO] [quark/]: Loading Module Chorus Vegetation [04Oct2023 08:47:48.814] [main/INFO] [quark/]: Loading Module Blossom Trees [04Oct2023 08:47:48.814] [main/INFO] [quark/]: Loading Module Big Stone Clusters [04Oct2023 08:47:48.815] [main/INFO] [quark/]: Loading Module Big Dungeon [04Oct2023 08:47:48.815] [main/INFO] [quark/]: Loading Module Azalea Wood [04Oct2023 08:47:48.816] [main/INFO] [quark/]: Loading Module Wraith [04Oct2023 08:47:48.816] [main/INFO] [quark/]: Loading Module Toretoise [04Oct2023 08:47:48.817] [main/INFO] [quark/]: Loading Module Stonelings [04Oct2023 08:47:48.818] [main/INFO] [quark/]: Loading Module Shiba [04Oct2023 08:47:48.819] [main/INFO] [quark/]: Loading Module Frogs [04Oct2023 08:47:48.820] [main/INFO] [quark/]: Loading Module Foxhound [04Oct2023 08:47:48.821] [main/INFO] [quark/]: Loading Module Forgotten [04Oct2023 08:47:48.822] [main/INFO] [quark/]: Loading Module Crabs [04Oct2023 08:47:48.823] [main/INFO] [quark/]: Loading Module Variant Animal Textures [04Oct2023 08:47:48.823] [main/INFO] [quark/]: Loading Module Uses For Curses [04Oct2023 08:47:48.824] [main/INFO] [quark/]: Loading Module Usage Ticker [04Oct2023 08:47:48.825] [main/INFO] [quark/]: Loading Module Soul Candles [04Oct2023 08:47:48.825] [main/INFO] [quark/]: Loading Module Microcrafting Helper [04Oct2023 08:47:48.826] [main/INFO] [quark/]: Loading Module Improved Tooltips [04Oct2023 08:47:48.826] [main/INFO] [quark/]: Loading Module Greener Grass [04Oct2023 08:47:48.827] [main/INFO] [quark/]: Loading Module Chest Searching [04Oct2023 08:47:48.827] [main/INFO] [quark/]: Loading Module Back Button Keybind [04Oct2023 08:47:48.828] [main/INFO] [quark/]: Loading Module Auto Walk Keybind [04Oct2023 08:47:48.829] [main/INFO] [quark/]: Loading Module Zombie Villagers On Normal [04Oct2023 08:47:48.830] [main/INFO] [quark/]: Loading Module Spawner Replacer [04Oct2023 08:47:48.830] [main/INFO] [quark/]: Loading Module Overlay Shader [04Oct2023 08:47:48.831] [main/INFO] [quark/]: Loading Module Narrator Readout [04Oct2023 08:47:48.831] [main/INFO] [quark/]: Loading Module Game Nerfs [04Oct2023 08:47:48.832] [main/INFO] [quark/]: Loading Module Enchantments Begone [04Oct2023 08:47:48.832] [main/INFO] [quark/]: Loading Module Adjustable Chat [04Oct2023 08:47:48.833] [main/INFO] [quark/]: Loading Module Totem Of Holding [04Oct2023 08:47:48.833] [main/INFO] [quark/]: Loading Module Tiny Potato [04Oct2023 08:47:48.834] [main/INFO] [quark/]: Loading Module Pipes [04Oct2023 08:47:48.835] [main/INFO] [quark/]: Loading Module Matrix Enchanting [04Oct2023 08:47:48.835] [main/INFO] [quark/]: Loading Module Magnets [04Oct2023 08:47:48.836] [main/INFO] [quark/]: Loading Module Crate [04Oct2023 08:47:48.836] [main/INFO] [quark/]: Loading Module Backpack [04Oct2023 08:47:48.837] [main/INFO] [quark/]: Dispatching Module Step CONFIG_CHANGED [04Oct2023 08:47:48.877] [modloading-worker-0/INFO] [com.connectivity.Connectivity/]: Connectivity initialized [04Oct2023 08:47:48.878] [modloading-worker-0/INFO] [com.clickadv.ClickAdvancements/]: clickadv mod initialized [04Oct2023 08:47:48.877] [modloading-worker-0/INFO] [Easy NPC/]: 🗣 Register Easy NPC Network Handler for net.minecraftforge.network.simple.SimpleChannel@5d1cfeb8 with version 10 ... [04Oct2023 08:47:48.895] [modloading-worker-0/INFO] [dev.wuffs.bcc.BCC/]: Better Compatibility Checker setting up [04Oct2023 08:47:48.928] [modloading-worker-0/INFO] [com.ncpbails.culturaldelights.CulturalDelights/]: HELLO FROM PREINIT [04Oct2023 08:47:48.929] [modloading-worker-0/INFO] [com.ncpbails.culturaldelights.CulturalDelights/]: DIRT BLOCK >> minecraft:dirt [04Oct2023 08:47:48.934] [modloading-worker-0/INFO] [terrablender/]: Registered region minecraft:overworld to index 0 for type OVERWORLD [04Oct2023 08:47:48.935] [modloading-worker-0/INFO] [terrablender/]: Registered region minecraft:nether to index 0 for type NETHER [04Oct2023 08:47:48.935] [modloading-worker-0/INFO] [terrablender/]: Registered region wildbackport:overworld to index 1 for type OVERWORLD [04Oct2023 08:47:48.960] [modloading-worker-0/INFO] [com.betterfpsdist.BetterfpsdistMod/]: betterfpsdist mod initialized [04Oct2023 08:47:48.960] [modloading-worker-0/INFO] [cn.mcmod_mmf.mmlib.Main/]: Presented by Zaia [04Oct2023 08:47:48.988] [Immersive Engineering Contributors Thread/INFO] [immersiveengineering/]: Attempting to download special revolvers from GitHub [04Oct2023 08:47:48.991] [modloading-worker-0/WARN] [FluxNetworks/]: Use FML network channel (low performance) [04Oct2023 08:47:49.006] [modloading-worker-0/INFO] [net.foundwiz.largemeals.LargeMeals/]: HELLO FROM PREINIT [04Oct2023 08:47:49.006] [modloading-worker-0/INFO] [net.foundwiz.largemeals.LargeMeals/]: DIRT BLOCK >> minecraft:dirt [04Oct2023 08:47:49.011] [modloading-worker-0/INFO] [com.jaquadro.minecraft.storagedrawers.StorageDrawers/]: New compacting rule 4 clay_ball = 1 clay [04Oct2023 08:47:49.011] [modloading-worker-0/INFO] [com.jaquadro.minecraft.storagedrawers.StorageDrawers/]: New compacting rule 4 snowball = 1 snow_block [04Oct2023 08:47:49.012] [modloading-worker-0/INFO] [com.jaquadro.minecraft.storagedrawers.StorageDrawers/]: New compacting rule 4 glowstone_dust = 1 glowstone [04Oct2023 08:47:49.013] [modloading-worker-0/INFO] [com.jaquadro.minecraft.storagedrawers.StorageDrawers/]: New compacting rule 4 brick = 1 bricks [04Oct2023 08:47:49.013] [modloading-worker-0/INFO] [com.jaquadro.minecraft.storagedrawers.StorageDrawers/]: New compacting rule 4 nether_brick = 1 nether_bricks [04Oct2023 08:47:49.014] [modloading-worker-0/INFO] [com.jaquadro.minecraft.storagedrawers.StorageDrawers/]: New compacting rule 9 nether_wart = 1 nether_wart_block [04Oct2023 08:47:49.015] [modloading-worker-0/INFO] [com.jaquadro.minecraft.storagedrawers.StorageDrawers/]: New compacting rule 4 quartz = 1 quartz_block [04Oct2023 08:47:49.015] [modloading-worker-0/INFO] [com.jaquadro.minecraft.storagedrawers.StorageDrawers/]: New compacting rule 9 melon_slice = 1 melon [04Oct2023 08:47:49.016] [modloading-worker-0/INFO] [com.jaquadro.minecraft.storagedrawers.StorageDrawers/]: New compacting rule 4 sand = 1 sandstone [04Oct2023 08:47:49.017] [modloading-worker-0/INFO] [com.jaquadro.minecraft.storagedrawers.StorageDrawers/]: New compacting rule 4 red_sand = 1 red_sandstone [04Oct2023 08:47:49.023] [modloading-worker-0/INFO] [com.jaquadro.minecraft.storagedrawers.StorageDrawers/]: New compacting rule 4 clay_ball = 1 clay [04Oct2023 08:47:49.024] [modloading-worker-0/INFO] [net.Pandarix.bushierflowers.BushierFlowers/]: Bushier Flowers set up [04Oct2023 08:47:49.047] [modloading-worker-0/INFO] [quark/]: Dispatching Module Step CONFIG_CHANGED [04Oct2023 08:47:49.059] [modloading-worker-0/INFO] [quark/]: Dispatching Module Step SETUP [04Oct2023 08:47:49.330] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [doggytalents] Starting version check at https://www.dropbox.com/s/raw/q6ckhwos45jires/version-doggytalents.json [04Oct2023 08:47:49.937] [modloading-worker-0/INFO] [com.sk89q.worldedit.extension.platform.PlatformManager/]: Got request to register class com.sk89q.worldedit.forge.ForgePlatform with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@3385caae] [04Oct2023 08:47:49.944] [modloading-worker-0/INFO] [com.sk89q.worldedit.forge.ForgeWorldEdit/]: WorldEdit for Forge (version 7.2.10+1742f98) is loaded [04Oct2023 08:47:49.974] [main/INFO] [terrablender/]: Registered region biomesoplenty:overworld_common to index 2 for type OVERWORLD [04Oct2023 08:47:49.975] [main/INFO] [terrablender/]: Registered region biomesoplenty:overworld_rare to index 3 for type OVERWORLD [04Oct2023 08:47:49.976] [main/INFO] [terrablender/]: Registered region biomesoplenty:nether_common to index 1 for type NETHER [04Oct2023 08:47:49.977] [main/INFO] [terrablender/]: Registered region biomesoplenty:nether_rare to index 2 for type NETHER [04Oct2023 08:47:49.992] [main/INFO] [terrablender/]: Registered region bettas:betta_region to index 4 for type OVERWORLD [04Oct2023 08:47:50.080] [main/INFO] [net.mehvahdjukaar.supplementaries.Supplementaries/]: Finished mod setup in: 64 ms [04Oct2023 08:47:50.223] [modloading-worker-0/INFO] [xaero.map.server.WorldMapServer/]: Loading Xaero's World Map - Stage 1/2 (Server) [04Oct2023 08:47:50.229] [modloading-worker-0/INFO] [xaero.common.MinimapLogs/]: Loading Xaero's Minimap - Stage 1/2 (Server) [04Oct2023 08:47:50.231] [main/INFO] [xaero.map.server.WorldMapServer/]: Loading Xaero's World Map - Stage 2/2 (Server) [04Oct2023 08:47:50.231] [main/INFO] [xaero.common.MinimapLogs/]: Loading Xaero's Minimap - Stage 2/2 (Server) [04Oct2023 08:47:50.277] [modloading-worker-0/INFO] [quark/]: Dispatching Module Step LOAD_COMPLETE [04Oct2023 08:47:50.278] [modloading-worker-0/ERROR] [net.minecraft.Util/]: Adding duplicate key 'ResourceKey[minecraft:worldgen/template_pool / minecraft:village/common/animals]' to registry [04Oct2023 08:47:50.292] [main/INFO] [terrablender/]: Registered region quark:biome_provider to index 5 for type OVERWORLD [04Oct2023 08:47:50.793] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [doggytalents] Found status: BETA Current: 2.5.11 Target: 2.5.0 [04Oct2023 08:47:50.794] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mcwwindows] Starting version check at https://raw.githubusercontent.com/sketchmacaw/macawsmods/master/window.json [04Oct2023 08:47:50.879] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mcwwindows] Found status: OUTDATED Current: 2.1.1 Target: 2.2.0 [04Oct2023 08:47:50.880] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [uteamcore] Starting version check at https://api.u-team.info/update/uteamcore.json [04Oct2023 08:47:50.985] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [uteamcore] Found status: UP_TO_DATE Current: 4.0.1.259 Target: null [04Oct2023 08:47:50.987] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mcwdoors] Starting version check at https://raw.githubusercontent.com/sketchmacaw/macawsmods/master/doors.json [04Oct2023 08:47:51.007] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mcwdoors] Found status: UP_TO_DATE Current: 1.1.0 Target: null [04Oct2023 08:47:51.007] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [usefulbackpacks] Starting version check at https://api.u-team.info/update/usefulbackpacks.json [04Oct2023 08:47:51.049] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [usefulbackpacks] Found status: UP_TO_DATE Current: 1.12.2.94 Target: null [04Oct2023 08:47:51.050] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mcwtrpdoors] Starting version check at https://raw.githubusercontent.com/sketchmacaw/macawsmods/master/trapdoors.json [04Oct2023 08:47:51.070] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mcwtrpdoors] Found status: AHEAD Current: 1.1.1 Target: null [04Oct2023 08:47:51.070] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mcwfences] Starting version check at https://raw.githubusercontent.com/sketchmacaw/macawsmods/master/fences.json [04Oct2023 08:47:51.092] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mcwfences] Found status: UP_TO_DATE Current: 1.0.7 Target: null [04Oct2023 08:47:51.093] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [noaispawneggs] Starting version check at https://updates.blamejared.com/get?n=noaispawneggs&gv=1.18.2 [04Oct2023 08:47:51.573] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [noaispawneggs] Found status: BETA Current: 11.0.1 Target: 11.0.1 [04Oct2023 08:47:51.574] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [cfm] Starting version check at https://mrcrayfish.com/modupdatejson?id=cfm [04Oct2023 08:47:51.830] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [cfm] Found status: BETA Current: 7.0.0-pre35 Target: 7.0.0-pre35 [04Oct2023 08:47:51.830] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mcwfurnitures] Starting version check at https://raw.githubusercontent.com/sketchmacaw/macawsmods/master/furniture.json [04Oct2023 08:47:51.854] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mcwfurnitures] Found status: UP_TO_DATE Current: 3.2.0 Target: null [04Oct2023 08:47:51.855] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [codechickenlib] Starting version check at https://version-check.covers1624.net/check/?mod=CodeChickenLib&mc=1.18.2 [04Oct2023 08:47:52.762] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [codechickenlib] Found status: UP_TO_DATE Current: 4.1.4.488 Target: null [04Oct2023 08:47:52.762] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [jeienchantmentinfo] Starting version check at https://github.com/Phylogeny/JEIEnchantmentInfo/raw/1.16.1/update.json [04Oct2023 08:47:53.077] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [jeienchantmentinfo] Found status: BETA Current: 1.17.1-2.0.0 Target: null [04Oct2023 08:47:53.077] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [creeperconfetti] Starting version check at https://raw.githubusercontent.com/SR2610/Creeper-Confetti-Forge-Edition/main/creeperconfettiupdate.json [04Oct2023 08:47:53.099] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [creeperconfetti] Found status: UP_TO_DATE Current: 3.11 Target: null [04Oct2023 08:47:53.100] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json [04Oct2023 08:47:53.302] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: OUTDATED Current: 40.2.9 Target: 40.2.10 [04Oct2023 08:47:53.302] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [immersiveengineering] Starting version check at https://raw.githubusercontent.com/BluSunrize/ImmersiveEngineering/1.18.2/changelog.json [04Oct2023 08:47:53.324] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [immersiveengineering] Found status: UP_TO_DATE Current: 1.18.2-8.4.0-161 Target: null [04Oct2023 08:47:53.324] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [jeiintegration] Starting version check at https://cdn.snowshock35.com/mods/jei-integration/update.json [04Oct2023 08:47:53.511] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [jeiintegration] Found status: BETA Current: 9.0.0.37 Target: null [04Oct2023 08:47:53.511] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [flywheel] Starting version check at https://api.modrinth.com/updates/flywheel/forge_updates.json [04Oct2023 08:47:53.745] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [flywheel] Found status: AHEAD Current: 0.6.10-105 Target: null [04Oct2023 08:47:53.745] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [placeableitems] Starting version check at https://raw.githubusercontent.com/Ferdzz/PlaceableItems/master/update.json [04Oct2023 08:47:53.772] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [placeableitems] Found status: UP_TO_DATE Current: 4.7.1 Target: null [04Oct2023 08:47:53.772] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [diagonalfences] Starting version check at https://raw.githubusercontent.com/Fuzss/modresources/main/update/diagonalfences.json [04Oct2023 08:47:53.794] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [diagonalfences] Found status: UP_TO_DATE Current: 3.2.3 Target: null [04Oct2023 08:47:53.795] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [puzzleslib] Starting version check at https://raw.githubusercontent.com/Fuzss/modresources/main/update/puzzleslib.json [04Oct2023 08:47:53.822] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [puzzleslib] Found status: UP_TO_DATE Current: 3.5.8 Target: null [04Oct2023 08:47:53.823] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [delightful] Starting version check at https://onvoid.net/delightful/update.json [04Oct2023 08:47:53.957] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [delightful] Found status: UP_TO_DATE Current: 2.6 Target: null [04Oct2023 08:48:27.300] [main/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' [04Oct2023 08:48:27.381] [main/WARN] [net.minecraft.server.Main/]: Safe mode active, only vanilla datapack will be loaded [04Oct2023 08:48:27.399] [main/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/H:/Dylani's%20Server%201.18.2/libraries/net/minecraft/server/1.18.2-20220404.173914/server-1.18.2-20220404.173914-srg.jar%23171!/assets/.mcassetsroot' uses unexpected schema [04Oct2023 08:48:27.399] [main/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/H:/Dylani's%20Server%201.18.2/libraries/net/minecraft/server/1.18.2-20220404.173914/server-1.18.2-20220404.173914-srg.jar%23171!/data/.mcassetsroot' uses unexpected schema [04Oct2023 08:48:28.617] [main/INFO] [net.mehvahdjukaar.every_compat.WoodGood/]: Generated runtime SERVER_DATA for pack Everycomp Generated Pack in: 936 ms [04Oct2023 08:48:28.650] [main/INFO] [net.mehvahdjukaar.supplementaries.Supplementaries/]: Generated runtime SERVER_DATA for pack Supplementaries Generated Pack in: 31 ms [04Oct2023 08:48:30.614] [main/INFO] [Easy NPC/]: Registering easy_npc commands ... [04Oct2023 08:48:30.650] [main/INFO] [com.sk89q.worldedit.extension.platform.PlatformCommandManager/]: Registering commands with com.sk89q.worldedit.forge.ForgePlatform [04Oct2023 08:48:30.776] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0] [04Oct2023 08:48:30.778] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0] [04Oct2023 08:48:30.783] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498] [04Oct2023 08:48:30.785] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498] [04Oct2023 08:48:30.787] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0] [04Oct2023 08:48:30.792] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [sweconm, giftbag, format] and [sweconm, giftbag, name] with inputs: ["", "hello world", "{"text":"hello world"}, [""]] [04Oct2023 08:48:30.795] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [sweconm, giftbag, name] and [sweconm, giftbag, format] with inputs: ["and symbols"] [04Oct2023 08:48:30.798] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [sweconm, transfer, player, amount] and [sweconm, transfer, player, target] with inputs: [0, -123, 123] [04Oct2023 08:48:30.801] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [swpm, gamemode, remove, dimension] and [swpm, gamemode, remove, regionId] with inputs: [dimension] [04Oct2023 08:48:30.828] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [create, coupling, add, cart1] and [create, coupling, add, carts] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498] [04Oct2023 08:48:30.830] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [create, coupling, add, carts] and [create, coupling, add, cart1] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498] [04Oct2023 08:48:30.833] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [create, coupling, add, cart1] and [create, coupling, add, carts] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498] [04Oct2023 08:48:30.836] [main/WARN] [net.minecraft.commands.Commands/]: Ambiguity between arguments [create, coupling, add, carts] and [create, coupling, add, cart1] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498] [04Oct2023 08:48:30.862] [main/FATAL] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/multiplayer/ClientLevel for invalid dist DEDICATED_SERVER [04Oct2023 08:48:30.863] [main/ERROR] [net.minecraftforge.eventbus.EventBus/EVENTBUS]: Exception caught during firing event: Attempted to load class net/minecraft/client/multiplayer/ClientLevel for invalid dist DEDICATED_SERVER Index: 1 Listeners: 0: NORMAL 1: net.minecraftforge.eventbus.EventBus$$Lambda$4574/0x0000000801b67548@49d72e8d 2: net.minecraftforge.eventbus.EventBus$$Lambda$4574/0x0000000801b67548@70d9f817 3: ASM: com.kotori316.limiter.LimitMobSpawn@3f7a3bcf addLister(Lnet/minecraftforge/event/AddReloadListenerEvent;)V 4: ASM: class tschipp.carryon.common.scripting.ScriptReloadListener onDatapackRegister(Lnet/minecraftforge/event/AddReloadListenerEvent;)V 5: net.minecraftforge.eventbus.EventBus$$Lambda$4574/0x0000000801b67548@210fb03d 6: net.minecraftforge.eventbus.EventBus$$Lambda$4574/0x0000000801b67548@1f40633f 7: ASM: class dev.architectury.registry.forge.ReloadListenerRegistryImpl addReloadListeners(Lnet/minecraftforge/event/AddReloadListenerEvent;)V 8: net.minecraftforge.eventbus.EventBus$$Lambda$4574/0x0000000801b67548@6f93851c 9: net.minecraftforge.eventbus.EventBus$$Lambda$4574/0x0000000801b67548@50b5d1b9 10: net.minecraftforge.eventbus.EventBus$$Lambda$4574/0x0000000801b67548@c670dca 11: net.minecraftforge.eventbus.EventBus$$Lambda$4574/0x0000000801b67548@1022cee2 12: ASM: net.mehvahdjukaar.selene.Selene@1f5d4858 addJsonListener(Lnet/minecraftforge/event/AddReloadListenerEvent;)V 13: ASM: mokiyoki.enhancedanimals.util.handlers.EventSubscriber@4cd5fee8 onAddReloadListenerEvent(Lnet/minecraftforge/event/AddReloadListenerEvent;)V 14: net.minecraftforge.eventbus.EventBus$$Lambda$4574/0x0000000801b67548@636a129f 15: ASM: net.minecraftforge.common.ForgeInternalHandler@745999e5 resourceReloadListeners(Lnet/minecraftforge/event/AddReloadListenerEvent;)V 16: ASM: net.minecraftforge.common.ForgeInternalHandler@745999e5 onResourceReload(Lnet/minecraftforge/event/AddReloadListenerEvent;)V 17: ASM: class immersive_paintings.forge.EventBus onAddReloadListener(Lnet/minecraftforge/event/AddReloadListenerEvent;)V 18: net.minecraftforge.eventbus.EventBus$$Lambda$4574/0x0000000801b67548@1dac2f52 19: net.minecraftforge.eventbus.EventBus$$Lambda$4574/0x0000000801b67548@29917870 20: ASM: class net.mehvahdjukaar.supplementaries.common.events.ServerEvents onAddReloadListeners(Lnet/minecraftforge/event/AddReloadListenerEvent;)V 21: ASM: class com.simibubi.create.foundation.events.CommonEvents addReloadListeners(Lnet/minecraftforge/event/AddReloadListenerEvent;)V 22: net.minecraftforge.eventbus.EventBus$$Lambda$4574/0x0000000801b67548@2fc2f67e java.lang.RuntimeException: Attempted to load class net/minecraft/client/multiplayer/ClientLevel for invalid dist DEDICATED_SERVER at MC-BOOTSTRAP/fmlloader@1.18.2-40.2.9/net.minecraftforge.fml.loading.RuntimeDistCleaner.processClassWithFlags(RuntimeDistCleaner.java:57) at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.3/cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.3/cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.3/cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) at cpw.mods.securejarhandler@1.0.8/cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) at cpw.mods.securejarhandler@1.0.8/cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) at cpw.mods.securejarhandler@1.0.8/cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) at cpw.mods.securejarhandler@1.0.8/cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) at cpw.mods.securejarhandler@1.0.8/cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521) at TRANSFORMER/rubidium@0.5.6/me.jellysquid.mods.sodium.client.SodiumClientMod.registerReloadListener(SodiumClientMod.java:48) at MC-BOOTSTRAP/eventbus@5.0.3/net.minecraftforge.eventbus.EventBus.doCastFilter(EventBus.java:247) at MC-BOOTSTRAP/eventbus@5.0.3/net.minecraftforge.eventbus.EventBus.lambda$addListener$11(EventBus.java:239) at MC-BOOTSTRAP/eventbus@5.0.3/net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) at MC-BOOTSTRAP/eventbus@5.0.3/net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) at TRANSFORMER/forge@40.2.9/net.minecraftforge.event.ForgeEventFactory.onResourceReload(ForgeEventFactory.java:746) at TRANSFORMER/minecraft@1.18.2/net.minecraft.server.ReloadableServerResources.m_206861_(ReloadableServerResources.java:84) at TRANSFORMER/minecraft@1.18.2/net.minecraft.server.WorldStem.m_206911_(WorldStem.java:44) at TRANSFORMER/minecraft@1.18.2/net.minecraft.server.Main.main(Main.java:157) at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) at java.base/java.lang.reflect.Method.invoke(Method.java:578) at MC-BOOTSTRAP/fmlloader@1.18.2-40.2.9/net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:32) at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.3/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.3/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.3/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.3/cpw.mods.modlauncher.Launcher.run(Launcher.java:106) at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.3/cpw.mods.modlauncher.Launcher.main(Launcher.java:77) at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.3/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.3/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) at cpw.mods.bootstraplauncher@1.0.0/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [04Oct2023 08:48:30.866] [main/WARN] [net.minecraft.server.Main/]: Failed to load datapacks, can't proceed with server load. You can either fix your datapacks or reset to vanilla with --safeMode java.util.concurrent.ExecutionException: java.lang.RuntimeException: Attempted to load class net/minecraft/client/multiplayer/ClientLevel for invalid dist DEDICATED_SERVER at java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396) ~[?:?] at java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2073) ~[?:?] at net.minecraft.server.Main.main(Main.java:183) ~[server-1.18.2-20220404.173914-srg.jar%23171!/:?] at jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:578) ~[?:?] at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:32) ~[fmlloader-1.18.2-40.2.9.jar%2318!/:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] Caused by: java.lang.RuntimeException: Attempted to load class net/minecraft/client/multiplayer/ClientLevel for invalid dist DEDICATED_SERVER at net.minecraftforge.fml.loading.RuntimeDistCleaner.processClassWithFlags(RuntimeDistCleaner.java:57) ~[fmlloader-1.18.2-40.2.9.jar%2318!/:1.0] at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-9.1.3.jar%235!/:?] at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-9.1.3.jar%235!/:?] at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-1.0.8.jar:?] at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-1.0.8.jar:?] at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-1.0.8.jar:?] at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-1.0.8.jar:?] at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-1.0.8.jar:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[?:?] at me.jellysquid.mods.sodium.client.SodiumClientMod.registerReloadListener(SodiumClientMod.java:48) ~[rubidium-0.5.6.jar%23140!/:?] at net.minecraftforge.eventbus.EventBus.doCastFilter(EventBus.java:247) ~[eventbus-5.0.3.jar%232!/:?] at net.minecraftforge.eventbus.EventBus.lambda$addListener$11(EventBus.java:239) ~[eventbus-5.0.3.jar%232!/:?] at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-5.0.3.jar%232!/:?] at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-5.0.3.jar%232!/:?] at net.minecraftforge.event.ForgeEventFactory.onResourceReload(ForgeEventFactory.java:746) ~[forge-1.18.2-40.2.9-universal.jar%23176!/:?] at net.minecraft.server.ReloadableServerResources.m_206861_(ReloadableServerResources.java:84) ~[server-1.18.2-20220404.173914-srg.jar%23171!/:?] at net.minecraft.server.WorldStem.m_206911_(WorldStem.java:44) ~[server-1.18.2-20220404.173914-srg.jar%23171!/:?] at net.minecraft.server.Main.main(Main.java:157) ~[server-1.18.2-20220404.173914-srg.jar%23171!/:?] ... 11 more  
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.