Coder Social home page Coder Social logo

re-avaritia's Introduction

title


Avaritia Reforged is a Minecraft mod made for Minecraft Forge

Supported Versions CurseForge Download License

English | 简体中文

📕Introduction:

  • This mod adds all from Avaritia.
  • This mod is unofficial and have bugs!

✏️Authors:

  • Programmer: cnlimiter Asek3 MikhailTapio

🔒License:

📌Download official:

❗Attention:

  • You  DEFINITELY CAN  add the mod to your modpack.
  • Recipe viewing is supported via JEI.
  • You can add singularity by using json!
  • You can add recipes by CraftTweaker!
  • You can add recipes by KubeJs!

🔎Develop:

CraftTweaker:

mods.avaritia.CompressionCrafting.addRecipe("name",input, inputCount, timeRequierd);
mods.avaritia.CompressionCrafting.remove(output);
mods.avaritia.ExtremeTableCrafting.addShaped("name",output, ingredients);
mods.avaritia.ExtremeTableCrafting.addShapeless("name",output, ingredients);
mods.avaritia.ExtremeTableCrafting.remove(output);

KubeJs:

//ExtremeCraft
event.custom({
    type: 'avaritia:shaped_extreme_craft',//Shaped Extreme Craft,Shapeless is avaritia:shapeless_extreme_craft
    pattern: [
        "       II",
        "      III",
        "     III ",
        "    III  ",
        " C III   ",
        "  CII    ",
        "  NC     ",
        " N  C    ",
        "X        "
    ],
    key: {
        C: [
            Ingredient.of('avaritia:crystal_matrix_ingot').toJson()
        ],
        I: [
            Ingredient.of('avaritia:infinity_ingot').toJson()
        ],
        N: [
            Ingredient.of('avaritia:neutron_ingot').toJson()
        ],
        X: [
            Ingredient.of('avaritia:infinity_catalyst').toJson()
        ]
    },
    result: [
        Ingredient.of('avaritia:infinity_sword').toJson()
    ]
})
//Compressor
event.custom({
    type: 'avaritia:compressor',//Compressor Recipe
    materialCount: 1000,
    timeRequired: 240,
    ingredients: [
        Ingredient.of('#forge:ingots/bronze').toJson()
    ],
    result: [
        Ingredient.of('avaritia:bronze_singularity').toJson()
    ]
})

InfinityCatalyst:

{
  "type": "avaritia:infinity_catalyst_craft",//Infinity Catalyst recipe type
  "category": "misc",
  "ingredients": [
    {
      "item": "minecraft:emerald_block"
    },
    {
      "item": "avaritia:crystal_matrix_ingot"
    },
    {
      "item": "avaritia:neutron_ingot"
    },
    {
      "item": "avaritia:cosmic_meatballs"
    },
    {
      "item": "avaritia:ultimate_stew"
    },
    {
      "item": "avaritia:endest_pearl"
    },
    {
      "item": "avaritia:record_fragment"
    }
  ],
  "result": {
    "item": "avaritia:infinity_catalyst"//Fixed products
  }
}

re-avaritia's People

Contributors

asek3 avatar cnlimiter avatar lxrds avatar michaelhillcox avatar mikhailtapio avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

re-avaritia's Issues

[Bug/漏洞] 世界崩解之镐锤形态崩溃

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

17.0.8

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

1.3.4

Description / 描述

稿子切换锤形态挖地就会崩溃

To Reproduce / 重现

我感觉应该是生成物质球有问题

Log / 日志

crash-2024-01-05_17.24.47-client.txt

Config / 配置

#Avaritia Base Config
[general]
#Does the super mode of endless tools retain stone and soil
"Is Stone" = false
#Whether to merge matter cluster
"Is Merge Matter Cluster" = false
#Range damage value of the right key of Infinity sword
#Range: 100 ~ 100000
"Sword Range Damage" = 10000
#Infinity sword right click attack range
#Range: 8 ~ 64
"Sword Attack Range" = 32
#Does the right key range attack of endless sword attack neutral creatures
"Is Sword Damage" = true
#Infinity bow scattering light arrow damage
#Range: 100 ~ 100000
"Sub Arrow Damage" = 10000
#Chain number of endless axe cutting trees
#Range: 16 ~ 128
"Axe Chain Count" = 64
#Food effect time scaling factor
#Range: 0.1 ~ 5.0
"Food Time" = 1.0
#The range of Infinity PickAxe can break
#Range: 2 ~ 32
"PickAxe Break Range" = 8
#The range of Infinity Shovel can break
#Range: 2 ~ 32
"Shovel Break Range" = 8
#The product tick of NeutronCollector
#Range: > 1200
"Neutron Collector Product Tick" = 3600
#Singularity default time required
#Range: > 0
"Singularity Time Required" = 240

Unable to change Infinity Catalyst Recipe via datapack

I am working on developing a modpack that includes this mod with some recipe changes and I am unable to change the recipe for the Infinity Catalyst. I am attempting to do so by using KubeJS's data folder. I originally thought it might be related to the .txt extension on the file, but changing that to .json didn't seem to have any effect. I looked through the code and it seems that the nova.committee.avaritia.init.ModRecipes class is directly setting it and not allowing it to be affected by changing the datapack. I can add a new recipe with the same recipe id, but the original (hard-coded) recipe remains.

[Question / 询问] mods.avaritia.ExtremeTableCrafting.remove returns error in crafttweaker (1.20.1)

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Description / 描述

when i try to use crafttweaker to remove a recipe from the extreme crafting table using the line: mods.avaritia.ExtremeTableCrafting.remove(item:avaritia:infinity_bow);
, it returns this error in chat:

Unable to run action due to an error Cannot invoke "net.minecraft.server.MinecraftServer.m_206579_()" because the return value of "net.minecraftforge.server.ServerLifecycleHooks.getCurrentServer()" is null

How to remove avaritia recipes on 3x3 crafting?

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Description / 描述

Im creating a modpack for me and my friends i was trying to modify some avaritia recipe, and i wanted to remove the crystal matrix ingot recipe but idk what is the code to remove it, can someone tell me if its possible to remove it?

(My Modpack version 1.18.2)

Bug or not with pickaxe

Infinite pickaxe, when you press shift, your nickname appears :D
pickaxe

P.S. In Russian, no "+Infinite Attack Damage" is displayed, it's strange...
infswordEN
infswordRU

Oh, and will there be any fix for displaying the parameters of the hoe?
infhoeAttack

(concept) And how about making the whole armor have such indicators?
armorInf

Crashes on startup

Latest version on Curseforge crashes on launch in my pack. It seems to be looking for some projecte method that doesn't exist since I dont have projectE in the pack.

Crashlog: https://gist.github.com/Saereth/fc049376fe2e15aafa40affb936501b2
Mod Version: Avaritia-Reforged-forge-1.18.2-1.0.3-universal.jar
Forge Version: 40.1.20
MC Version: 1.18.2

Let me know if you need any more info, thanks!

The neutronium collector does not connect to pipes from other neutronium extraction mods except AE2[Bug/漏洞]

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

8u291

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

1.3.2.

Description / 描述

The neutronium collector does not connect to pipes from other neutronium extraction mods except AE2[Bug/漏洞]

To Reproduce / 重现

Connect the neutron collector to pipes from other mods, such as xnet, mekanism, ender io

Log / 日志

Config / 配置

{
"type": "avaritia:shaped_extreme_craft",
"category": "equipment",
"key": {
"C": {
"item": "avaritia:crystal_matrix_ingot"
},
"I": {
"item": "minecraft:iron_block"
},
"Q": {
"item": "minecraft:quartz_block"
},
"R": {
"item": "minecraft:redstone_block"
}
},
"pattern": [
"IIQQQQQII",
"I QQQQQ I",
"I RRR I",
"C RRRRR C",
"I RRCRR I",
"C RRRRR C",
"I RRR I",
"I I",
"IIICICIII"
],
"result": {
"item": "avaritia:neutron_collector"
},
"show_notification": true
}

[Bug/漏洞] Conflict with other survival flight mods

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

21.0.2.0

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

1.3.5.3

Description / 描述

Starting with version 1.3.5 the mod breaks the capability of other mods that allow the player to fly on survival to work properly, some examples include:
Apotheosis - Flight Potion
Inventory Pets - Cloud Pets
Rings of Ascension: Ring of Flight
Apotheotic Additions: Jewel of the Aether
Bosses of Mass Destruction: Table of Elevation
Angel Ring 2: All Angel Rings
it's worth mentioning that this issue is not present in version 1.3.4 and it's most likely caused by the previously reported "bugged jump".

To Reproduce / 重现

  1. Download Avaritia-Reforge 1.3.5 or 1.3.5.3 alongside any of the other mods mentioned + the respective dependencies.
  2. Use the item/apply the effect that should enable the user to use creative flight in survival
  3. Try to jump repeatedly, it wont work.

Log / 日志

No relevant logs can be provided as this issue is not logged by the minecraft console.

Config / 配置

avaritia-common.json

Infinity chestplate removes the ability to fly

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

8 u291

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

1.3.2

Description / 描述

If a player puts on the infinity chestpiece, then other players within a radius of 3 chunks are deprived of the ability to fly using the armor mek (chest mek + gravity module) and singular armor from industrial craft

To Reproduce / 重现

I played on a server with a friend who had armor that allowed him to fly, when I put on the chestplate my friend lost the ability to fly in his armor

Log / 日志

.

Config / 配置

Avaritia-Reforged-1.20.1-1.3.2.zip

[Question] Names of singularities ID?

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Description / 描述

I can't change the crafting of items using singularities using CraftTweaker.

The reason is that each singularity has the same name and the only difference is the ID. CraftTweeker does not support the use of the name: "item:avaritia:singularity.withTag({Id: "avaritia:lapis_lazuli"})".
XWHmzi6

I also tried to write the name of the singularity, as indicated on the main page of the mod on CourseForge: "item:avaritia:bronze_singularity" however this also does not work.
YripvRn

Please tell me how to correctly indicate the name of singularities in custom crafts? I'm using Forge and Minecraft version 1.20.1.

Here are examples of custom recipes:

mods.avaritia.ExtremeTableCrafting.remove(<item:avaritia:infinity_catalyst>);
mods.avaritia.ExtremeTableCrafting.addShaped("infinity_catalyst", <item:avaritia:infinity_catalyst>,  
[[<item:avaritia:redstone_singularity>, <minecraft:air>, <minecraft:air>, <minecraft:air>, <item:avaritia:lapis_lazuli_singularity>, <minecraft:air>, <minecraft:air>, <minecraft:air>, <item:avaritia:redstone_singularity>],
[<minecraft:air>, <item:avaritia:emerald_singularity>, <item:avaritia:electrum_singularity>, <minecraft:air>, <item:avaritia:ultimate_stew>, <minecraft:air>, <item:avaritia:gold_singularity>, <item:avaritia:emerald_singularity>, <minecraft:air>],
[<minecraft:air>, <item:avaritia:gold_singularity>, <item:avaritia:ultimate_stew>, <item:avaritia:platinum_singularity>, <item:avaritia:endest_pearl>, <item:avaritia:diamond_singularity>, <item:avaritia:ultimate_stew>, <item:avaritia:electrum_singularity>, <minecraft:air>],
[<minecraft:air>, <minecraft:air>, <item:avaritia:diamond_singularity>, <item:avaritia:endest_pearl>, <item:avaritia:cosmic_meatballs>, <item:avaritia:endest_pearl>, <item:avaritia:platinum_singularity>, <minecraft:air>, <minecraft:air>],
[<item:avaritia:lapis_lazuli_singularity>, <item:avaritia:ultimate_stew>, <item:avaritia:endest_pearl>, <item:avaritia:cosmic_meatballs>, <item:avaritia:endest_pearl>, <item:avaritia:cosmic_meatballs>, <item:avaritia:endest_pearl>, <item:avaritia:ultimate_stew>, <item:avaritia:lapis_lazuli_singularity>],
[<minecraft:air>, <minecraft:air>, <item:avaritia:platinum_singularity>, <item:avaritia:endest_pearl>, <item:avaritia:cosmic_meatballs>, <item:avaritia:endest_pearl>, <item:avaritia:diamond_singularity>, <minecraft:air>, <minecraft:air>],
[<minecraft:air>, <item:avaritia:electrum_singularity>, <item:avaritia:ultimate_stew>, <item:avaritia:diamond_singularity>, <item:avaritia:endest_pearl>, <item:avaritia:platinum_singularity>, <item:avaritia:ultimate_stew>, <item:avaritia:gold_singularity>, <minecraft:air>],
[<minecraft:air>, <item:avaritia:emerald_singularity>, <item:avaritia:gold_singularity>, <minecraft:air>, <item:avaritia:ultimate_stew>, <minecraft:air>, <item:avaritia:electrum_singularity>, <item:avaritia:emerald_singularity>, <minecraft:air>],
[<item:avaritia:redstone_singularity>, <minecraft:air>, <minecraft:air>, <minecraft:air>, <item:avaritia:lapis_lazuli_singularity>, <minecraft:air>, <minecraft:air>, <minecraft:air>, <item:avaritia:redstone_singularity>]]);
mods.avaritia.ExtremeTableCrafting.remove(<item:avaritia:infinity_catalyst>);
mods.avaritia.ExtremeTableCrafting.addShaped("infinity_catalyst", <item:avaritia:infinity_catalyst>,  
[[<item:avaritia:singularity>.withTag({Id: "avaritia:redstone"}), <minecraft:air>, <minecraft:air>, <minecraft:air>, <item:avaritia:singularity>.withTag({Id: "avaritia:lapis_lazuli"}), <minecraft:air>, <minecraft:air>, <minecraft:air>, <item:avaritia:singularity>.withTag({Id: "avaritia:redstone"})],
[<minecraft:air>, <item:avaritia:singularity>.withTag({Id: "avaritia:emerald"}), <item:avaritia:singularity>.withTag({Id: "avaritia:electrum"}), <minecraft:air>, <item:avaritia:ultimate_stew>, <minecraft:air>, <item:avaritia:singularity>.withTag({Id: "avaritia:gold"}), <item:avaritia:singularity>.withTag({Id: "avaritia:emerald"}), <minecraft:air>],
[<minecraft:air>, <item:avaritia:singularity>.withTag({Id: "avaritia:gold"}), <item:avaritia:ultimate_stew>, <item:avaritia:singularity>.withTag({Id: "avaritia:platinum"}), <item:avaritia:endest_pearl>, <item:avaritia:singularity>.withTag({Id: "avaritia:diamond"}), <item:avaritia:ultimate_stew>, <item:avaritia:singularity>.withTag({Id: "avaritia:electrum"}), <minecraft:air>],
[<minecraft:air>, <minecraft:air>, <item:avaritia:singularity>.withTag({Id: "avaritia:diamond"}), <item:avaritia:endest_pearl>, <item:avaritia:cosmic_meatballs>, <item:avaritia:endest_pearl>, <item:avaritia:singularity>.withTag({Id: "avaritia:platinum"}), <minecraft:air>, <minecraft:air>],
[<item:avaritia:singularity>.withTag({Id: "avaritia:lapis_lazuli"}), <item:avaritia:ultimate_stew>, <item:avaritia:endest_pearl>, <item:avaritia:cosmic_meatballs>, <item:avaritia:endest_pearl>, <item:avaritia:cosmic_meatballs>, <item:avaritia:endest_pearl>, <item:avaritia:ultimate_stew>, <item:avaritia:singularity>.withTag({Id: "avaritia:lapis_lazuli"})],
[<minecraft:air>, <minecraft:air>, <item:avaritia:singularity>.withTag({Id: "avaritia:platinum"}), <item:avaritia:endest_pearl>, <item:avaritia:cosmic_meatballs>, <item:avaritia:endest_pearl>, <item:avaritia:singularity>.withTag({Id: "avaritia:diamond"}), <minecraft:air>, <minecraft:air>],
[<minecraft:air>, <item:avaritia:singularity>.withTag({Id: "avaritia:electrum"}), <item:avaritia:ultimate_stew>, <item:avaritia:singularity>.withTag({Id: "avaritia:diamond"}), <item:avaritia:endest_pearl>, <item:avaritia:singularity>.withTag({Id: "avaritia:platinum"}), <item:avaritia:ultimate_stew>, <item:avaritia:singularity>.withTag({Id: "avaritia:gold"}), <minecraft:air>],
[<minecraft:air>, <item:avaritia:singularity>.withTag({Id: "avaritia:emerald"}), <item:avaritia:singularity>.withTag({Id: "avaritia:gold"}), <minecraft:air>, <item:avaritia:ultimate_stew>, <minecraft:air>, <item:avaritia:singularity>.withTag({Id: "avaritia:electrum"}), <item:avaritia:singularity>.withTag({Id: "avaritia:emerald"}), <minecraft:air>],
[<item:avaritia:singularity>.withTag({Id: "avaritia:redstone"}), <minecraft:air>, <minecraft:air>, <minecraft:air>, <item:avaritia:singularity>.withTag({Id: "avaritia:lapis_lazuli"}), <minecraft:air>, <minecraft:air>, <minecraft:air>, <item:avaritia:singularity>.withTag({Id: "avaritia:redstone"})]]);

Here are the error:
A6iS8qz

[Bug/漏洞] Disable the flight function of other mods in gamemode survival/生存模式下使其他模组的飞行功能失效

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

17.0.2

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

1.3.5.4

Description / 描述

阻碍其他模组的飞行功能如
Mekanism的重力调节单元
Mini Utilities的天使指环

To Reproduce / 重现

Forge版本47.2.21
Minecraft版1.20.1
仅添加Mekanism10.4.6和Re:Avaritia1.3.5.4 无Embeddium或Rubidium
生存模式下无法使用Mekanism的飞行功能

Log / 日志

no

Config / 配置

avaritia-common.json

[Bug/漏洞] Avaritia与jei在服务器中一些合成表不显示

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

17.0.6

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

1.3.4

Description / 描述

Avaritia在服务器使用时jei不显示无尽催化剂等合成,并且会导致其他一些模组的合成表不显示
比如jei,Ex Nihilo: Sequentia与Avaritia一起使用时会导致服务器jei不显示Ex Nihilo: Sequentia的合成表

To Reproduce / 重现

最新版jei,Avaritia一起使用并用jei查看无尽催化剂合成

Log / 日志

https://mclo.gs/34sG69g

Config / 配置

#Avaritia Base Config
[general]
#Does the super mode of endless tools retain stone and soil
"Is Stone" = false
#Whether to merge matter cluster
"Is Merge Matter Cluster" = false
#Range damage value of the right key of Infinity sword
#Range: 100 ~ 100000
"Sword Range Damage" = 10000
#Infinity sword right click attack range
#Range: 8 ~ 64
"Sword Attack Range" = 32
#Does the right key range attack of endless sword attack neutral creatures
"Is Sword Damage" = true
#Infinity bow scattering light arrow damage
#Range: 100 ~ 100000
"Sub Arrow Damage" = 10000
#Chain number of endless axe cutting trees
#Range: 16 ~ 128
"Axe Chain Count" = 64
#Food effect time scaling factor
#Range: 0.1 ~ 5.0
"Food Time" = 1.0
#The range of Infinity PickAxe can break
#Range: 2 ~ 32
"PickAxe Break Range" = 8
#The range of Infinity Shovel can break
#Range: 2 ~ 32
"Shovel Break Range" = 8
#The product tick of NeutronCollector
#Range: > 1200
"Neutron Collector Product Tick" = 3600
#Singularity default time required
#Range: > 0
"Singularity Time Required" = 240

[Bug/漏洞] Grief with server plugin

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

Version 8 update 321 (build 1.8.0_321-b07)

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

Avaritia-Reforged - 1.3.2

Description / 描述

Grief with Infinity bow in worldguard regions
Infinity bow can damage mobs and players in worldguard regions

To Reproduce / 重现

Claim region
Remove me from owners
Deop
Try to shoot from infinity bow to some mobs
they died(

Log / 日志

Plugin for regions
worldguard-bukkit-7.0.9-dist.jar

Config / 配置

No configs

1.20.1 | (Re-Avaritia-forged-1.20.1-1.3.3++Botania-1.20.1-441-FORGE-SNAPSHOT) | infinity sword doesnt work cirrectly

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

8u291

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

1.3.3

Description / 描述

On killing bosses with the infinity sword does not fill up the deep learner and his models.

HostileNeuralNetworks-1.20.1-5.1.3

Killing a Gaia with the Infinity Sword does not drop any item.

Botania-1.20.1-441-FORGE-SNAPSHOT

To Reproduce / 重现

Hostile : put mob data models in deep learner and try to fill it on killing

Botania : kill the gaia of any tier

https://youtu.be/X3TZM45AZdE

Log / 日志

don't have it

Config / 配置

don't have it too

Infinity Catalyst became real infinity

image

image

In server, after I placed and removed any kind of items in the Extreme Crafting Table, I was able to obtain Infinity Catalyst constantly in the output section

Singularity rendering error on the server

In the client - singularities are displayed.
On the server - NULL singularities.
If you go to the single-world, then go to the server - it is displayed correctly.
Single:
image
Server:
image
If you went to the client and then to the server:
image

debug:
[Render thread/WARN] [net.minecraft.client.ClientRecipeBook/]: Unknown recipe category: [!!!com.mojang.logging.LogUtils$1ToString@7a0802ba=>java.lang.NullPointerException:Cannot invoke "Object.toString()" because the return value of "java.util.function.Supplier.get()" is null!!!]/avaritia:slime_singularity

[Bug/漏洞] The jump is bugged after install this mod, the character jump higher

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

17.0.8

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

1.3.5.3

Description / 描述

The jump is bugged after install this mod, the character jump higher

To Reproduce / 重现

Log / 日志

don't have it

Config / 配置

don't have it too

Mod loading error

when I start the mod even by itself it crashes with the error:
at nova.committee.avaritia.init.registry.ModEntities.<clinit>(ModEntities.java:27) ~[Avaritia-Reforged-forge-1.19-1.0.9-universal.jar%23143!/:1.19-1.0.9] {re:classloading}

[Bug/漏洞] Endest pearl Grief (with worldguard)

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

Version 8 update 321 (build 1.8.0_321-b07)

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

Avaritia-Reforged - 1.3.2

Description / 描述

Grief with endest pearl with worldguard regions

To Reproduce / 重现

Claim region
Deop
Remove from owners
Try to shoot the endest pearl
Black hole destroys blocks in region

Log / 日志

Plugin for regions
worldguard-bukkit-7.0.9-dist.jar

Config / 配置

No configs

[Bug/漏洞]

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

i dont know

Minecraft Version / Minecraft版本

1.19.2

Avaritia-Reforge Version / Avaritia-Reforge版本

Avaritia-Reforged-1.19.2-1.3.2

Description / 描述

https://imgur.com/a/3FN8M3s
check this video its multiple says u killed a blight mob but right click with sword or a normal sword says just 1

To Reproduce / 重现

mods
scaling healt (max difficulty using curse hearts}
silent lib
Avaritia:Reforged

Log / 日志

latest.log

Config / 配置

config.zip

[Bug/ 漏洞】 The blocks in this mod cannot be mined. 所有方块从模组里不能被挖.

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Description / 描述

Why all the blocks in this mod cannot be mined? I can't even mine it with my netherite pickaxe, do I need to use the Infinite Pickaxe to mine them, or you forgot to add the right tool to mine them also?

为啥这模组里的所有方块不能被挖? 我甚至也不能用下界合金镐来挖, 我是要用无限镐还是你们忘记加适合的镐来挖这些方块?

[Bug/漏洞] The damage caused by bow was at 10 pts(5 hearts) and unable to customize. 弓的伤害只有十点(5颗心)并且无法自定义

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

18.0.1

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

1.3.5 (release from the latest action 最新action的版本)

Description / 描述

I shot some neutral(villager) and hostile(warden) creatures with the bow, and it turns out that they will only get 10 pts(5 hearts) of damage. I tried to change the value of "Sub arrow damage" to apply more damage to entities, while it turns out useless.
我用无尽弓攻击一些中立(村民)和敌对(守卫者)生物,但它们只受到了10点(5颗心)的伤害。我试着更改"Sub arrow damage"的值来让附属箭对实体造成更多伤害,但最终没有起作用。

To Reproduce / 重现

Shoot some creatures with the infinity bow.

Log / 日志

latest.log

Config / 配置

#Avaritia Base Config
[general]
#Does the super mode of endless tools retain stone and soil
"Is Stone" = false
#Whether to merge matter cluster
"Is Merge Matter Cluster" = false
#Range damage value of the right key of Infinity sword
#Range: 100 ~ 100000
"Sword Range Damage" = 10000
#Infinity sword right click attack range
#Range: 8 ~ 64
"Sword Attack Range" = 32
#Does the right key range attack of endless sword attack neutral creatures
"Is Sword Damage" = true
#Infinity bow scattering light arrow damage
#Range: 100 ~ 100000
"Sub Arrow Damage" = 10000
#Chain number of endless axe cutting trees
#Range: 16 ~ 128
"Axe Chain Count" = 64
#Food effect time scaling factor
#Range: 0.1 ~ 5.0
"Food Time" = 1.0
#The range of Infinity PickAxe can break
#Range: 2 ~ 32
"PickAxe Break Range" = 8
#The range of Infinity Shovel can break
#Range: 2 ~ 32
"Shovel Break Range" = 8
#The product tick of NeutronCollector
#Range: > 1200
"Neutron Collector Product Tick" = 3600
#Singularity default time required
#Range: > 0
"Singularity Time Required" = 240

[Bug/漏洞]

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

openjdk version "17.0.8" 2023-07-18

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

1.3.2

Description / 描述

linux下服务端无法正确加载奇点

To Reproduce / 重现

java -version
openjdk version "17.0.8" 2023-07-18
OpenJDK Runtime Environment GraalVM CE 17.0.8+7.1 (build 17.0.8+7-jvmci-23.0-b15)
OpenJDK 64-Bit Server VM GraalVM CE 17.0.8+7.1 (build 17.0.8+7-jvmci-23.0-b15, mixed mode, sharing)

mohist 1.20.1 build 444

默认的json地址形如
/home/alex/mc/minecraftserver/config/avaritia/singularities/avaritia:something.json

报错排头又这样
[12:37:15] [main/ERROR] [committee.nova.mods.avaritia.Static]: An error occurred while loading singularities
net.minecraft.ResourceLocationException: Non [a-z0-9/._-] character in path of location: avaritia:avaritia:steel

那么我认为在linux下不能正确的识别json的地址,也许应该加反斜杠和冒号等?

Log / 日志

https://paste.ubuntu.com/p/CHbcmNhXM6/

Config / 配置

默认的配置

Extreme Crafting Table GUI does work on dedicated server [Bug/漏洞]

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

17.0.2

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

1.3.3

Description / 描述

The Extreme Crafting Table GUI does not appear on a dedicated server (third party providers as well as locally on "localhost"). Single player worlds work fine. Tested on forge (47.1.47) and neoforged (47.1.79). Tested with just this mod and JEI (15.2.0.27)

To Reproduce / 重现

start a dedicated server (either through third party provider or locally via "localhost")
place down an extreme crafting table
attempt to open the GUI

Log / 日志

https://gist.github.com/zpprsprk/0d011239458f9a9d855248bf5294ce71

Config / 配置

#Avaritia Base Config
[general]
#Does the super mode of endless tools retain stone and soil
"Is Stone" = false
#Whether to merge matter cluster
"Is Merge Matter Cluster" = false
#Range damage value of the right key of Infinity sword
#Range: 100 ~ 100000
"Sword Range Damage" = 10000
#Infinity sword right click attack range
#Range: 8 ~ 64
"Sword Attack Range" = 32
#Does the right key range attack of endless sword attack neutral creatures
"Is Sword Damage" = true
#Infinity bow scattering light arrow damage
#Range: 100 ~ 100000
"Sub Arrow Damage" = 10000
#Chain number of endless axe cutting trees
#Range: 16 ~ 128
"Axe Chain Count" = 64
#Food effect time scaling factor
#Range: 0.1 ~ 5.0
"Food Time" = 1.0
#The range of Infinity PickAxe can break
#Range: 2 ~ 32
"PickAxe Break Range" = 8
#The range of Infinity Shovel can break
#Range: 2 ~ 32
"Shovel Break Range" = 8
#The product tick of NeutronCollector
#Range: > 1200
"Neutron Collector Product Tick" = 3600
#Singularity default time required
#Range: > 0
"Singularity Time Required" = 240

[Bug/漏洞] Going into spectator mode will make you to fall through the world.

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

Default

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

Re-Avaritia-forged-1.20.1-1.3.5

Description / 描述

When pressing F3 + F4 to go into spectator mode, instead of floating in the same place as before, you will fall through the world.

To Reproduce / 重现

Press F3 + F4 to go into spectator mode.

Log / 日志

https://mclo.gs/MBDYhqv

Config / 配置

Default

[Enhancement/功能请求] More in depth crafttweaker examples

Checks/检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Description/描述

craftweaker is the go to for new pack makers and since this mods names "Avaritia" is well known, meaning both new and old pack creators a like will be going to it for the custom recipes alone

the problem is that the craftweaker code example is very lacking compared to most other craftweaker examples I've seen
best example of this is

mods.avaritia.ExtremeTableCrafting.addShaped("name",output, ingredients);
mods.avaritia.ExtremeTableCrafting.addShapeless("name",output, ingredients);

both look like shapeless recipes yet one is clearly not, and a new pack dev will look at these not see the diffrence, get error after error, pushing them on to you unless they see the Kubejs side that is in depth and are using kubejs

Most will not see the Kubejs side or not use it do to only be using craftweaker

Again this just a request to make the craftweaker examples more in depth to help new devs (and some older ones)

[Enhancement/功能请求] 关于渲染的部分...

Checks/检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Description/描述

由于Avaritia 1.18.2暂时没有Source Code,我自己反编译与修改了一部分代码,使其优化,此版本还是需要CodeChickenLib awa,但是也许可以做参考,无尽弓与锭还有剑都有做。

Link : https://github.com/NOBTG/1.18.2-Avaritia-Cosmic_and_Halo-Renderer

你需要在Mod主类加上:

        DataGenerators.init()
ITEMS.register(FMLJavaModLoadingContext.get().getModEventBus());
        DistExecutor.safeRunWhenOn(Dist.CLIENT, () -> ClientInit::init);
    private static final DeferredRegister<Item> ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, "avaritia");
    public static final RegistryObject<InfinitySwordItem> INFINITY_SWORD = ITEMS.register("infinity_sword", () -> new InfinitySwordItem(new Item.Properties()));
    public static final RegistryObject<InfinityBowItem> INFINITY_BOW = ITEMS.register("infinity_bow", () -> new InfinityBowItem(new Item.Properties()));
    public static final RegistryObject<Item> INFINITY_INGOT = ITEMS.register("infinity_ingot", () -> new Item(new Item.Properties()));

请注意! 此代码仅供惨考与学习之用,下载后请于24小时内删除,其衍生出的任何法律作者一率不承担。

sword of the cosmos

seems like you didnt port that effect on the sword
is it possible to do so pls ?

[Enhancement/功能请求] Add recipe

Checks/检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Description/描述

Add recipe to craft:
neutronium ingots from neutronium block
infinity ingots from infinity block
crystal matrix ingots from crystal matrix block

Mod version: Avaritia-Reforged - 1.3.2

[Bug/漏洞] : Crash in the debug world

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

21

Minecraft Version / Minecraft版本

1.20.4

Avaritia-Reforge Version / Avaritia-Reforge版本

1.3.5.3

Description / 描述

Crash in the debug world

To Reproduce / 重现

Generate a debug world (Alt key in "World Type")
Try to load the full world
Crash

Log / 日志

crash-2024-02-21_16.40.28-client.txt

Config / 配置

avaritia-common.txt

[Bug/漏洞] Game Crash when dropping certian items

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

17.0.7 and 21.0.1

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

1.3.4

Description / 描述

Game crashes when throwing certain items on the ground

To Reproduce / 重现

Open a minecraft world with re:avaritia installed and throw an infinity item or singularity on the ground (other items may cause issue but these are the only ones i have found) and game will crash

Log / 日志

Prism Launcher version: 8.0 (official)

Launched instance in online mode

authserver.mojang.com resolves to:
[52.85.24.63, 52.85.24.44, 52.85.24.112, 52.85.24.12]

session.minecraft.net resolves to:
[13.107.246.56, 13.107.213.56]

textures.minecraft.net resolves to:
[13.107.246.56, 13.107.213.56]

api.mojang.com resolves to:
[13.107.246.56, 13.107.213.56]

Minecraft folder is:
C:/Users/User/AppData/Roaming/PrismLauncher/instances/1.20.1(1)/.minecraft

Java path is:
C:/Program Files/Java/jdk-17/bin/javaw.exe

Checking Java version...
Java is version 17.0.7, using 64 (amd64) architecture, from Oracle Corporation.

Main Class:
io.github.zekerzhayard.forgewrapper.installer.Main

Native path:
C:/Users/User/AppData/Roaming/PrismLauncher/instances/1.20.1(1)/natives

Traits:
traits FirstThreadOnMacOS
traits XR:Initial

Libraries:
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-glfw-natives-windows-arm64/3.3.1/lwjgl-glfw-natives-windows-arm64-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-glfw-natives-windows-x86/3.3.1/lwjgl-glfw-natives-windows-x86-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-glfw-natives-windows/3.3.1/lwjgl-glfw-natives-windows-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-jemalloc-natives-windows-arm64/3.3.1/lwjgl-jemalloc-natives-windows-arm64-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-jemalloc-natives-windows-x86/3.3.1/lwjgl-jemalloc-natives-windows-x86-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-jemalloc-natives-windows/3.3.1/lwjgl-jemalloc-natives-windows-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-natives-windows-arm64/3.3.1/lwjgl-natives-windows-arm64-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-natives-windows-x86/3.3.1/lwjgl-natives-windows-x86-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-natives-windows/3.3.1/lwjgl-natives-windows-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-openal-natives-windows-arm64/3.3.1/lwjgl-openal-natives-windows-arm64-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-openal-natives-windows-x86/3.3.1/lwjgl-openal-natives-windows-x86-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-openal-natives-windows/3.3.1/lwjgl-openal-natives-windows-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-opengl-natives-windows-arm64/3.3.1/lwjgl-opengl-natives-windows-arm64-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-opengl-natives-windows-x86/3.3.1/lwjgl-opengl-natives-windows-x86-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-opengl-natives-windows/3.3.1/lwjgl-opengl-natives-windows-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-stb-natives-windows-arm64/3.3.1/lwjgl-stb-natives-windows-arm64-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-stb-natives-windows-x86/3.3.1/lwjgl-stb-natives-windows-x86-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-stb-natives-windows/3.3.1/lwjgl-stb-natives-windows-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-tinyfd-natives-windows-arm64/3.3.1/lwjgl-tinyfd-natives-windows-arm64-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-tinyfd-natives-windows-x86/3.3.1/lwjgl-tinyfd-natives-windows-x86-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-tinyfd-natives-windows/3.3.1/lwjgl-tinyfd-natives-windows-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/com/github/oshi/oshi-core/6.2.2/oshi-core-6.2.2.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/com/google/code/gson/gson/2.10/gson-2.10.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/com/ibm/icu/icu4j/71.1/icu4j-71.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/com/mojang/authlib/4.0.43/authlib-4.0.43.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/com/mojang/blocklist/1.0.10/blocklist-1.0.10.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/com/mojang/brigadier/1.1.8/brigadier-1.1.8.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/com/mojang/datafixerupper/6.0.8/datafixerupper-6.0.8.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/com/mojang/logging/1.1.1/logging-1.1.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/com/mojang/patchy/2.2.10/patchy-2.2.10.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/com/mojang/text2speech/1.17.9/text2speech-1.17.9.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/commons-codec/commons-codec/1.15/commons-codec-1.15.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/io/netty/netty-buffer/4.1.82.Final/netty-buffer-4.1.82.Final.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/io/netty/netty-codec/4.1.82.Final/netty-codec-4.1.82.Final.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/io/netty/netty-common/4.1.82.Final/netty-common-4.1.82.Final.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/io/netty/netty-handler/4.1.82.Final/netty-handler-4.1.82.Final.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/io/netty/netty-resolver/4.1.82.Final/netty-resolver-4.1.82.Final.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/io/netty/netty-transport-classes-epoll/4.1.82.Final/netty-transport-classes-epoll-4.1.82.Final.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/io/netty/netty-transport-native-unix-common/4.1.82.Final/netty-transport-native-unix-common-4.1.82.Final.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/io/netty/netty-transport/4.1.82.Final/netty-transport-4.1.82.Final.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/it/unimi/dsi/fastutil/8.5.9/fastutil-8.5.9.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/java/dev/jna/jna-platform/5.12.1/jna-platform-5.12.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/apache/logging/log4j/log4j-api/2.19.0/log4j-api-2.19.0.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/apache/logging/log4j/log4j-core/2.19.0/log4j-core-2.19.0.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/apache/logging/log4j/log4j-slf4j2-impl/2.19.0/log4j-slf4j2-impl-2.19.0.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/joml/joml/1.10.5/joml-1.10.5.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/slf4j/slf4j-api/2.0.1/slf4j-api-2.0.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/io/github/zekerzhayard/ForgeWrapper/1.5.8-prism/ForgeWrapper-1.5.8-prism.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/neoforged/fancymodloader/loader/47.2.2/loader-47.2.2.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/neoforged/fancymodloader/earlydisplay/47.2.2/earlydisplay-47.2.2.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/cpw/mods/securejarhandler/2.1.10/securejarhandler-2.1.10.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/ow2/asm/asm/9.5/asm-9.5.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/eventbus/6.0.5/eventbus-6.0.5.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/forgespi/7.0.1/forgespi-7.0.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/coremods/5.0.1/coremods-5.0.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/cpw/mods/modlauncher/10.0.9/modlauncher-10.0.9.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/mergetool/1.1.5/mergetool-1.1.5-api.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/jodah/typetools/0.6.3/typetools-0.6.3.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/JarJarSelector/0.3.19/JarJarSelector-0.3.19.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/JarJarMetadata/0.3.19/JarJarMetadata-0.3.19.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/minecraftforge/JarJarFileSystems/0.3.19/JarJarFileSystems-0.3.19.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/neoforged/fancymodloader/events/47.2.2/events-47.2.2.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/neoforged/fancymodloader/core/47.2.2/core-47.2.2.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/neoforged/fancymodloader/language-java/47.2.2/language-java-47.2.2.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/neoforged/fancymodloader/language-lowcode/47.2.2/language-lowcode-47.2.2.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/neoforged/fancymodloader/language-minecraft/47.2.2/language-minecraft-47.2.2.jar
C:/Users/User/AppData/Roaming/PrismLauncher/libraries/com/mojang/minecraft/1.20.1/minecraft-1.20.1-client.jar

Native libraries:

Mods:
[✔] Re-Avaritia-forged-1.20.1-1.3.4

Params:
--username --version 1.20.1 --gameDir C:/Users/User/AppData/Roaming/PrismLauncher/instances/1.20.1(1)/.minecraft --assetsDir C:/Users/User/AppData/Roaming/PrismLauncher/assets --assetIndex 5 --uuid --accessToken --userType --versionType release --launchTarget forgeclient --fml.forgeVersion 47.1.99 --fml.fmlVersion 47.2.2 --fml.mcVersion 1.20.1 --fml.mcpVersion 20230612.114412

Window size: 854 x 480

Launcher: standard

Java Arguments:
[-XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump, -Xms512m, -Xmx6144m, -Duser.language=en]

Minecraft process ID: 41148

Checking: MC_SLIM
Checking: MERGED_MAPPINGS
Checking: MAPPINGS
Checking: MC_EXTRA
Checking: MOJMAPS
Checking: PATCHED
Checking: MC_SRG
[14:47:50.203] [main/INFO] [Launcher/MODLAUNCHER]: ModLauncher running: args [--username, KrazyMiner001, --version, 1.20.1, --gameDir, C:/Users/User/AppData/Roaming/PrismLauncher/instances/1.20.1(1)/.minecraft, --assetsDir, C:/Users/User/AppData/Roaming/PrismLauncher/assets, --assetIndex, 5, --uuid, , --accessToken, ????????, --userType, msa, --versionType, release, --launchTarget, forgeclient, --fml.forgeVersion, 47.1.99, --fml.fmlVersion, 47.2.2, --fml.mcVersion, 1.20.1, --fml.mcpVersion, 20230612.114412, --width, 854, --height, 480]
[14:47:50.207] [main/INFO] [Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.7 by Oracle Corporation; OS Windows 11 arch amd64 version 10.0
[14:47:50.341] [main/INFO] [loading.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow
[14:47:50.444] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6
[14:47:50.704] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6
Failed to load forge logo
[14:47:50.817] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/User/AppData/Roaming/PrismLauncher/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23152!/ Service=ModLauncher Env=CLIENT
[14:47:50.885] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: NVIDIA GeForce RTX 3060/PCIe/SSE2 GL version 4.6.0 NVIDIA 537.42, NVIDIA Corporation
[14:47:50.957] [main/INFO] [loading.moddiscovery.ModDiscoverer/SCAN]: Found mod file "Re-Avaritia-forged-1.20.1-1.3.4.jar" of type MOD with provider {mods folder locator at C:\Users\User\AppData\Roaming\PrismLauncher\instances\1.20.1(1).minecraft\mods}
[14:47:51.160] [main/WARN] [loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\User\AppData\Roaming\PrismLauncher\libraries\net\neoforged\fancymodloader\core\47.2.2\core-47.2.2.jar is missing mods.toml file
[14:47:51.169] [main/WARN] [loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\User\AppData\Roaming\PrismLauncher\libraries\net\neoforged\fancymodloader\language-java\47.2.2\language-java-47.2.2.jar is missing mods.toml file
[14:47:51.176] [main/WARN] [loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\User\AppData\Roaming\PrismLauncher\libraries\net\neoforged\fancymodloader\language-lowcode\47.2.2\language-lowcode-47.2.2.jar is missing mods.toml file
[14:47:51.183] [main/WARN] [loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\User\AppData\Roaming\PrismLauncher\libraries\net\neoforged\fancymodloader\language-minecraft\47.2.2\language-minecraft-47.2.2.jar is missing mods.toml file
[14:47:51.194] [main/INFO] [loading.moddiscovery.ModDiscoverer/SCAN]: Found mod file "core-47.2.2.jar" of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@5a5c128
[14:47:51.194] [main/INFO] [loading.moddiscovery.ModDiscoverer/SCAN]: Found mod file "language-java-47.2.2.jar" of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@5a5c128
[14:47:51.194] [main/INFO] [loading.moddiscovery.ModDiscoverer/SCAN]: Found mod file "language-lowcode-47.2.2.jar" of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@5a5c128
[14:47:51.194] [main/INFO] [loading.moddiscovery.ModDiscoverer/SCAN]: Found mod file "language-minecraft-47.2.2.jar" of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@5a5c128
[14:47:51.194] [main/INFO] [loading.moddiscovery.ModDiscoverer/SCAN]: Found mod file "client-1.20.1-20230612.114412-srg.jar" of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@5a5c128
[14:47:51.195] [main/INFO] [loading.moddiscovery.ModDiscoverer/SCAN]: Found mod file "forge-1.20.1-47.1.99-universal.jar" of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@5a5c128
[14:47:51.207] [main/INFO] [loading.moddiscovery.ModDiscoverer/SCAN]: Found mod file "events-47.2.2.jar" of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.BuiltinGameLibraryLocator@57bd2029
[14:47:51.259] [main/INFO] [loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping!
[14:47:52.402] [main/INFO] [mixin/]: Compatibility level set to JAVA_17
[14:47:52.403] [main/INFO] [LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclient' with arguments [--version, 1.20.1, --gameDir, C:\Users\User\AppData\Roaming\PrismLauncher\instances\1.20.1(1).minecraft, --assetsDir, C:\Users\User\AppData\Roaming\PrismLauncher\assets, --uuid, , --username, KrazyMiner001, --assetIndex, 5, --accessToken, ????????, --userType, msa, --versionType, release, --width, 854, --height, 480]
[14:47:52.487] [main/WARN] [mixin/]: Reference map 'avaritia.refmap.json' for avaritia.mixins.json could not be read. If this is a development environment you can ignore this message
2024-02-14 14:47:52,603 main WARN Advanced terminal features are not available in this environment
[14:47:56] [Datafixer Bootstrap/INFO] [mojang/DataFixerBuilder]: 188 Datafixer optimizations took 158 milliseconds
[14:47:57] [Render thread/WARN] [minecraft/VanillaPackResourcesBuilder]: Assets URL 'union:/C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412-srg.jar%23158!/assets/.mcassetsroot' uses unexpected schema
[14:47:57] [Render thread/WARN] [minecraft/VanillaPackResourcesBuilder]: Assets URL 'union:/C:/Users/User/AppData/Roaming/PrismLauncher/libraries/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412-srg.jar%23158!/data/.mcassetsroot' uses unexpected schema
[14:47:57] [Render thread/INFO] [mojang/YggdrasilAuthenticationService]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[14:47:58] [Render thread/INFO] [minecraft/Minecraft]: Setting user: KrazyMiner001
[14:47:58] [Render thread/INFO] [minecraft/Minecraft]: Backend library: LWJGL version 3.3.1 build 7
[14:47:58] [modloading-worker-0/INFO] [ne.mi.co.ForgeMod/FORGEMOD]: NeoForge mod loading, version 47.1.99, for MC 1.20.1 with MCP 20230612.114412
[14:47:58] [modloading-worker-0/INFO] [ne.mi.co.MinecraftForge/FORGE]: NeoForge v47.1.99 Initialized
[14:47:59] [Render thread/WARN] [minecraft/Options]: Removed resource pack fabric from options because it doesn't seem to exist anymore
[14:47:59] [Render thread/INFO] [minecraft/ReloadableResourceManager]: Reloading ResourceManager: vanilla, mod_resources
[14:47:59] [Worker-Main-11/INFO] [minecraft/UnihexProvider]: Found unifont_all_no_pua-15.0.06.hex, loading
[14:48:02] [Render thread/WARN] [minecraft/SoundEngine]: Missing sound for event: minecraft:item.goat_horn.play
[14:48:02] [Render thread/WARN] [minecraft/SoundEngine]: Missing sound for event: minecraft:entity.goat.screaming.horn_break
[14:48:02] [Render thread/INFO] [mojang/Library]: OpenAL initialized on device OpenAL Soft on Headphones (Realtek(R) Audio)
[14:48:02] [Render thread/INFO] [minecraft/SoundEngine]: Sound engine started
[14:48:02] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 1024x512x4 minecraft:textures/atlas/blocks.png-atlas
[14:48:02] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 256x256x4 minecraft:textures/atlas/signs.png-atlas
[14:48:02] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas
[14:48:02] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas
[14:48:02] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 1024x1024x4 minecraft:textures/atlas/armor_trims.png-atlas
[14:48:02] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas
[14:48:02] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 128x64x4 minecraft:textures/atlas/decorated_pot.png-atlas
[14:48:02] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas
[14:48:02] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas
[14:48:03] [Render thread/WARN] [minecraft/ShaderInstance]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program.
[14:48:03] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas
[14:48:03] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas
[14:48:03] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas
[14:48:14] [Render thread/INFO] [minecraft/RecipeManager]: Loaded 8 recipes
[14:48:14] [Render thread/INFO] [minecraft/AdvancementList]: Loaded 1300 advancements
[14:48:14] [Render thread/INFO] [co.no.mo.av.Static/]: Skipping loading Singularity avaritia:aluminum as its conditions were not met!
[14:48:14] [Render thread/INFO] [co.no.mo.av.Static/]: Skipping loading Singularity avaritia:bronze as its conditions were not met!
[14:48:14] [Render thread/INFO] [co.no.mo.av.Static/]: Skipping loading Singularity avaritia:electrum as its conditions were not met!
[14:48:14] [Render thread/INFO] [co.no.mo.av.Static/]: Skipping loading Singularity avaritia:invar as its conditions were not met!
[14:48:14] [Render thread/INFO] [co.no.mo.av.Static/]: Skipping loading Singularity avaritia:lead as its conditions were not met!
[14:48:14] [Render thread/INFO] [co.no.mo.av.Static/]: Skipping loading Singularity avaritia:nickel as its conditions were not met!
[14:48:14] [Render thread/INFO] [co.no.mo.av.Static/]: Skipping loading Singularity avaritia:platinum as its conditions were not met!
[14:48:14] [Render thread/INFO] [co.no.mo.av.Static/]: Skipping loading Singularity avaritia:silver as its conditions were not met!
[14:48:14] [Render thread/INFO] [co.no.mo.av.Static/]: Skipping loading Singularity avaritia:steel as its conditions were not met!
[14:48:14] [Render thread/INFO] [co.no.mo.av.Static/]: Skipping loading Singularity avaritia:tin as its conditions were not met!
[14:48:14] [Render thread/INFO] [co.no.mo.av.Static/]: Loaded 9 singularity type(s) in 15 ms
[14:48:16] [Server thread/INFO] [minecraft/IntegratedServer]: Starting integrated minecraft server version 1.20.1
[14:48:16] [Server thread/INFO] [minecraft/MinecraftServer]: Generating keypair
[14:48:16] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Configuration file C:\Users\User\AppData\Roaming\PrismLauncher\instances\1.20.1(1).minecraft\saves\New World (1)\serverconfig\forge-server.toml is not correct. Correcting
[14:48:16] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Incorrect key server was corrected from null to its default, SimpleCommentedConfig:{}.
[14:48:16] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Incorrect key server.removeErroringBlockEntities was corrected from null to its default, false.
[14:48:16] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Incorrect key server.removeErroringEntities was corrected from null to its default, false.
[14:48:16] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Incorrect key server.fullBoundingBoxLadders was corrected from null to its default, false.
[14:48:16] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Incorrect key server.zombieBaseSummonChance was corrected from null to its default, 0.1.
[14:48:16] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Incorrect key server.zombieBabyChance was corrected from null to its default, 0.05.
[14:48:16] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Incorrect key server.permissionHandler was corrected from null to its default, forge:default_handler.
[14:48:16] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Incorrect key server.advertiseDedicatedServerToLan was corrected from null to its default, true.
[14:48:20] [Server thread/INFO] [minecraft/MinecraftServer]: Preparing start region for dimension minecraft:overworld
[14:48:21] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[14:48:21] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[14:48:21] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[14:48:21] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[14:48:22] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 1%
[14:48:22] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 2%
[14:48:23] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 3%
[14:48:23] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 5%
[14:48:24] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 7%
[14:48:24] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 11%
[14:48:25] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 15%
[14:48:25] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 17%
[14:48:26] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 22%
[14:48:26] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 25%
[14:48:27] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 30%
[14:48:27] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 33%
[14:48:28] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 38%
[14:48:28] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 42%
[14:48:29] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 46%
[14:48:29] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 52%
[14:48:30] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 56%
[14:48:30] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 63%
[14:48:31] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 68%
[14:48:31] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 72%
[14:48:32] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 79%
[14:48:32] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 84%
[14:48:33] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 88%
[14:48:33] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 95%
[14:48:34] [Server thread/INFO] [ne.mi.se.pe.PermissionAPI/]: Successfully initialized permission handler forge:default_handler
[14:48:34] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Time elapsed: 13805 ms
[14:48:34] [Server thread/INFO] [minecraft/IntegratedServer]: Changing view distance to 12, from 10
[14:48:34] [Server thread/INFO] [minecraft/IntegratedServer]: Changing simulation distance to 12, from 0
[14:48:34] [Render thread/WARN] [io.ne.ut.in.SystemPropertyUtil/]: Unable to parse the boolean system property 'java.net.preferIPv6Addresses':system - using the default value: false
[14:48:35] [Netty Local Client IO #0/INFO] [ne.mi.ne.NetworkHooks/]: Connected to a modded server.
[14:48:35] [Server thread/INFO] [minecraft/PlayerList]: KrazyMiner001[local:E:db2e2f29] logged in with entity id 212 at (10.5, 65.0, 3.5)
[14:48:35] [Server thread/INFO] [minecraft/MinecraftServer]: KrazyMiner001 joined the game
[14:48:35] [Render thread/INFO] [co.no.mo.av.Static/]: Loaded 9 singularities from the server
[14:48:35] [Render thread/WARN] [minecraft/ClientRecipeBook]: Unknown recipe category: avaritia:compressor_recipe/avaritia:emerald_singularity
[14:48:35] [Render thread/WARN] [minecraft/ClientRecipeBook]: Unknown recipe category: avaritia:extreme_craft_recipe/avaritia:cosmic_meatballs
[14:48:35] [Render thread/WARN] [minecraft/ClientRecipeBook]: Unknown recipe category: avaritia:compressor_recipe/avaritia:redstone_singularity
[14:48:35] [Render thread/WARN] [minecraft/ClientRecipeBook]: Unknown recipe category: avaritia:compressor_recipe/avaritia:copper_singularity
[14:48:35] [Render thread/WARN] [minecraft/ClientRecipeBook]: Unknown recipe category: avaritia:compressor_recipe/avaritia:diamond_singularity
[14:48:35] [Render thread/WARN] [minecraft/ClientRecipeBook]: Unknown recipe category: avaritia:compressor_recipe/avaritia:coal_singularity
[14:48:35] [Render thread/WARN] [minecraft/ClientRecipeBook]: Unknown recipe category: avaritia:compressor_recipe/avaritia:glowstone_singularity
[14:48:35] [Render thread/WARN] [minecraft/ClientRecipeBook]: Unknown recipe category: avaritia:extreme_craft_recipe/avaritia:infinity_catalyst
[14:48:35] [Render thread/WARN] [minecraft/ClientRecipeBook]: Unknown recipe category: avaritia:compressor_recipe/avaritia:gold_singularity
[14:48:35] [Render thread/WARN] [minecraft/ClientRecipeBook]: Unknown recipe category: avaritia:extreme_craft_recipe/avaritia:ultimate_stew
[14:48:35] [Render thread/WARN] [minecraft/ClientRecipeBook]: Unknown recipe category: avaritia:extreme_craft_recipe/avaritia:infinity_ingot
[14:48:35] [Render thread/WARN] [minecraft/ClientRecipeBook]: Unknown recipe category: avaritia:compressor_recipe/avaritia:lapis_lazuli_singularity
[14:48:35] [Render thread/WARN] [minecraft/ClientRecipeBook]: Unknown recipe category: avaritia:compressor_recipe/avaritia:iron_singularity
[14:48:36] [Render thread/INFO] [minecraft/AdvancementList]: Loaded 2 advancements
[14:48:36] [Server thread/INFO] [minecraft/IntegratedServer]: Saving and pausing game...
[14:48:36] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[14:48:37] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[14:48:37] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[14:48:49] [Render thread/INFO] [minecraft/AdvancementList]: Loaded 14 advancements
[14:48:51] [Render thread/INFO] [minecraft/AdvancementList]: Loaded 15 advancements
[14:49:02] [Render thread/ERROR] [minecraft/Minecraft]: Unreported exception thrown!
java.lang.NullPointerException: Cannot invoke "net.minecraft.client.renderer.entity.EntityRenderer.m_5523_(net.minecraft.world.entity.Entity, net.minecraft.client.renderer.culling.Frustum, double, double, double)" because "entityrenderer" is null
at net.minecraft.client.renderer.entity.EntityRenderDispatcher.m_114397_(EntityRenderDispatcher.java:127) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
at net.minecraft.client.renderer.LevelRenderer.m_109599_(LevelRenderer.java:1199) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
at net.minecraft.client.renderer.GameRenderer.m_109089_(GameRenderer.java:1130) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:913) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
at net.minecraft.client.main.Main.main(Main.java:218) ~[minecraft-1.20.1-client.jar:?] {re:classloading,pl:runtimedistcleaner:A}
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:126) ~[loader-47.2.2.jar:47.2] {}
at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:114) ~[loader-47.2.2.jar:47.2] {}
at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.runService(CommonClientLaunchHandler.java:24) ~[loader-47.2.2.jar:47.2] {}
at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.lambda$launchService$4(CommonLaunchHandler.java:108) ~[loader-47.2.2.jar:47.2] {}
at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {}
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
at io.github.zekerzhayard.forgewrapper.installer.Main.main(Main.java:67) ~[?:?] {}
at org.prismlauncher.launcher.impl.StandardLauncher.launch(StandardLauncher.java:87) ~[?:?] {}
at org.prismlauncher.EntryPoint.listen(EntryPoint.java:130) ~[?:?] {}
at org.prismlauncher.EntryPoint.main(EntryPoint.java:70) ~[?:?] {}
[14:49:02] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server
[14:49:02] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players
[14:49:02] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds
[14:49:02] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[14:49:03] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[14:49:03] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[14:49:03] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (New World (1)): All chunks are saved
[14:49:03] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[14:49:03] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[14:49:03] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage: All dimensions are saved
[14:49:04] [Render thread/FATAL] [ne.mi.co.ForgeMod/]: Preparing crash report with UUID 1a7d8d57-e044-41d6-a3de-3af79f105ee4
---- Minecraft Crash Report ----
// Shall we play a game?

Time: 2024-02-14 14:49:04
Description: Unexpected error

java.lang.NullPointerException: Cannot invoke "net.minecraft.client.renderer.entity.EntityRenderer.m_5523_(net.minecraft.world.entity.Entity, net.minecraft.client.renderer.culling.Frustum, double, double, double)" because "entityrenderer" is null
at net.minecraft.client.renderer.entity.EntityRenderDispatcher.m_114397_(EntityRenderDispatcher.java:127) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
at net.minecraft.client.renderer.LevelRenderer.m_109599_(LevelRenderer.java:1199) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
at net.minecraft.client.renderer.GameRenderer.m_109089_(GameRenderer.java:1130) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:913) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
at net.minecraft.client.main.Main.main(Main.java:218) ~[minecraft-1.20.1-client.jar:?] {re:classloading,pl:runtimedistcleaner:A}
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:126) ~[loader-47.2.2.jar:47.2] {}
at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:114) ~[loader-47.2.2.jar:47.2] {}
at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.runService(CommonClientLaunchHandler.java:24) ~[loader-47.2.2.jar:47.2] {}
at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.lambda$launchService$4(CommonLaunchHandler.java:108) ~[loader-47.2.2.jar:47.2] {}
at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {}
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
at io.github.zekerzhayard.forgewrapper.installer.Main.main(Main.java:67) ~[?:?] {}
at org.prismlauncher.launcher.impl.StandardLauncher.launch(StandardLauncher.java:87) ~[?:?] {}
at org.prismlauncher.EntryPoint.listen(EntryPoint.java:130) ~[?:?] {}
at org.prismlauncher.EntryPoint.main(EntryPoint.java:70) ~[?:?] {}

A detailed walkthrough of the error, its code path and all known details is as follows:

-- Head --
Thread: Render thread
Stacktrace:
at net.minecraft.client.renderer.entity.EntityRenderDispatcher.m_114397_(EntityRenderDispatcher.java:127) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
at net.minecraft.client.renderer.LevelRenderer.m_109599_(LevelRenderer.java:1199) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
at net.minecraft.client.renderer.GameRenderer.m_109089_(GameRenderer.java:1130) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
-- Affected level --
Details:
All players: 1 total; [LocalPlayer['KrazyMiner001'/212, l='ClientLevel', x=9.37, y=65.00, z=1.79]]
Chunk stats: 961, 609
Level dimension: minecraft:overworld
Level spawn location: World: (0,71,0), Section: (at 0,7,0 in 0,4,0; chunk contains blocks 0,-64,0 to 15,319,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511)
Level time: 486 game time, 486 day time
Server brand: forge
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.ClientLevel.m_6026_(ClientLevel.java:455) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:runtimedistcleaner:A}
at net.minecraft.client.Minecraft.m_91354_(Minecraft.java:2319) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:740) ~[client-1.20.1-20230612.114412-srg.jar%23158!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
at net.minecraft.client.main.Main.main(Main.java:218) ~[minecraft-1.20.1-client.jar:?] {re:classloading,pl:runtimedistcleaner:A}
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:126) ~[loader-47.2.2.jar:47.2] {}
at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:114) ~[loader-47.2.2.jar:47.2] {}
at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.runService(CommonClientLaunchHandler.java:24) ~[loader-47.2.2.jar:47.2] {}
at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.lambda$launchService$4(CommonLaunchHandler.java:108) ~[loader-47.2.2.jar:47.2] {}
at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}
at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {}
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
at io.github.zekerzhayard.forgewrapper.installer.Main.main(Main.java:67) ~[?:?] {}
at org.prismlauncher.launcher.impl.StandardLauncher.launch(StandardLauncher.java:87) ~[?:?] {}
at org.prismlauncher.EntryPoint.listen(EntryPoint.java:130) ~[?:?] {}
at org.prismlauncher.EntryPoint.main(EntryPoint.java:70) ~[?:?] {}

-- Last reload --
Details:
Reload number: 1
Reload reason: initial
Finished: Yes
Packs: vanilla, mod_resources

-- System Details --
Details:
Minecraft Version: 1.20.1
Minecraft Version ID: 1.20.1
Operating System: Windows 11 (amd64) version 10.0
Java Version: 17.0.7, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
Memory: 593377576 bytes (565 MiB) / 2243952640 bytes (2140 MiB) up to 6442450944 bytes (6144 MiB)
CPUs: 12
Processor Vendor: AuthenticAMD
Processor Name: AMD Ryzen 5 5500
Identifier: AuthenticAMD Family 25 Model 80 Stepping 0
Microarchitecture: Zen 3
Frequency (GHz): 3.59
Number of physical packages: 1
Number of physical CPUs: 6
Number of logical CPUs: 12
Graphics card #0 name: NVIDIA GeForce RTX 3060
Graphics card #0 vendor: NVIDIA (0x10de)
Graphics card #0 VRAM (MB): 4095.00
Graphics card #0 deviceId: 0x2487
Graphics card #0 versionInfo: DriverVersion=31.0.15.3742
Memory slot #0 capacity (MB): 8192.00
Memory slot #0 clockSpeed (GHz): 2.67
Memory slot #0 type: DDR4
Memory slot #1 capacity (MB): 8192.00
Memory slot #1 clockSpeed (GHz): 2.67
Memory slot #1 type: DDR4
Virtual memory max (MB): 60040.71
Virtual memory used (MB): 51693.51
Swap memory total (MB): 43865.18
Swap memory used (MB): 12961.17
JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xms512m -Xmx6144m
Launched Version: 1.20.1
Backend library: LWJGL version 3.3.1 build 7
Backend API: NVIDIA GeForce RTX 3060/PCIe/SSE2 GL version 4.6.0 NVIDIA 537.42, NVIDIA Corporation
Window size: 854x480
GL Caps: Using framebuffer using OpenGL 3.2
GL debug messages:
Using VBOs: Yes
Is Modded: Definitely; Client brand changed to 'forge'; Server brand changed to 'forge'
Type: Integrated Server (map_client.txt)
Graphics mode: fancy
Resource Packs:
Current Language: en_us
CPU: 12x AMD Ryzen 5 5500
Server Running: true
Player Count: 1 / 8; [ServerPlayer['KrazyMiner001'/212, l='ServerLevel[New World]', x=9.37, y=65.00, z=1.79]]
Data Packs: vanilla, mod:forge, mod:avaritia
Enabled Feature Flags: minecraft:vanilla
World Generation: Stable
ModLauncher: 10.0.9+10.0.9+main.dcd20f30
ModLauncher launch target: forgeclient
ModLauncher naming: srg
ModLauncher services:
mixin-0.8.5.jar mixin PLUGINSERVICE
eventbus-6.0.5.jar eventbus PLUGINSERVICE
loader-47.2.2.jar slf4jfixer PLUGINSERVICE
loader-47.2.2.jar object_holder_definalize PLUGINSERVICE
loader-47.2.2.jar runtime_enum_extender PLUGINSERVICE
loader-47.2.2.jar capability_token_subclass PLUGINSERVICE
accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE
loader-47.2.2.jar runtimedistcleaner PLUGINSERVICE
modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE
modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE
FML Language Providers:
[email protected]
[email protected]
[email protected]
Mod List:
client-1.20.1-20230612.114412-srg.jar |Minecraft |minecraft |1.20.1 |DONE |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f
forge-1.20.1-47.1.99-universal.jar |NeoForge |forge |47.1.99 |DONE |Manifest: NOSIGNATURE
Re-Avaritia-forged-1.20.1-1.3.4.jar |Re-Avaritia-forged |avaritia |1.3.4 |DONE |Manifest: NOSIGNATURE
Crash Report UUID: 1a7d8d57-e044-41d6-a3de-3af79f105ee4
FML: 47.1
NeoForge: net.neoforged:47.1.99
[14:49:04] [Render thread/FATAL] [ne.mi.co.ForgeMod/]: Preparing crash report with UUID d9436fd9-8101-4479-a827-982bdd7a1601
#@!@# Game crashed! Crash report saved to: #@!@# C:\Users\User\AppData\Roaming\PrismLauncher\instances\1.20.1(1).minecraft\crash-reports\crash-2024-02-14_14.49.04-client.txt
Process exited with code -1.

Config / 配置

Couldn't find Avaritia-Reforge.json but config is unchanged

[Enhancement/功能请求] momentum/speed also works when you jump

Checks/检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Description/描述

Could you make it so that the momentum/speed also works when you jump? Currently, when you jump, you lose all momentum/speed boost. Thank you very much for this remake of the mod!

[Bug/漏洞] 最新构建版本会使某些物品合成失效

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

17.0.6

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

1.3.5

Description / 描述

github内Actions最新构建版本会使一些物品合成失效
目前只发现了工作台

To Reproduce / 重现

安装Avaritia后制作工作台

Log / 日志

https://mclo.gs/9FWI4cc

Config / 配置

#Avaritia Base Config
[general]
#Does the super mode of endless tools retain stone and soil
"Is Stone" = false
#Whether to merge matter cluster
"Is Merge Matter Cluster" = false
#Range damage value of the right key of Infinity sword
#Range: 100 ~ 100000
"Sword Range Damage" = 10000
#Infinity sword right click attack range
#Range: 8 ~ 64
"Sword Attack Range" = 32
#Does the right key range attack of endless sword attack neutral creatures
"Is Sword Damage" = true
#Infinity bow scattering light arrow damage
#Range: 100 ~ 100000
"Sub Arrow Damage" = 10000
#Chain number of endless axe cutting trees
#Range: 16 ~ 128
"Axe Chain Count" = 64
#Food effect time scaling factor
#Range: 0.1 ~ 5.0
"Food Time" = 1.0
#The range of Infinity PickAxe can break
#Range: 2 ~ 32
"PickAxe Break Range" = 8
#The range of Infinity Shovel can break
#Range: 2 ~ 32
"Shovel Break Range" = 8
#The product tick of NeutronCollector
#Range: > 1200
"Neutron Collector Product Tick" = 3600
#Singularity default time required
#Range: > 0
"Singularity Time Required" = 240

[Bug/漏洞] 丢出奇点时游戏崩溃

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

17.0.3.1

Minecraft Version / Minecraft版本

1.20.1

Avaritia-Reforge Version / Avaritia-Reforge版本

1.3.4

Description / 描述

丢出任意奇点后,游戏崩溃。

To Reproduce / 重现

主手手持任意奇点按下Q键丢出后游戏卡死崩溃(仅在处于创造模式下测试过)

Log / 日志

crash-2024-01-06_02.01.36-client.txt

Config / 配置

#Avaritia Base Config
[general]
#Does the super mode of endless tools retain stone and soil
"Is Stone" = false
#Whether to merge matter cluster
"Is Merge Matter Cluster" = false
#Range damage value of the right key of Infinity sword
#Range: 100 ~ 100000
"Sword Range Damage" = 10000
#Infinity sword right click attack range
#Range: 8 ~ 64
"Sword Attack Range" = 32
#Does the right key range attack of endless sword attack neutral creatures
"Is Sword Damage" = true
#Infinity bow scattering light arrow damage
#Range: 100 ~ 100000
"Sub Arrow Damage" = 10000
#Chain number of endless axe cutting trees
#Range: 16 ~ 128
"Axe Chain Count" = 64
#Food effect time scaling factor
#Range: 0.1 ~ 5.0
"Food Time" = 1.0
#The range of Infinity PickAxe can break
#Range: 2 ~ 32
"PickAxe Break Range" = 8
#The range of Infinity Shovel can break
#Range: 2 ~ 32
"Shovel Break Range" = 8
#The product tick of NeutronCollector
#Range: > 1200
"Neutron Collector Product Tick" = 3600
#Singularity default time required
#Range: > 0
"Singularity Time Required" = 240

Extreme crafting table bug

Mc Ver's 1.18.2 mod Ver's 1.1.1-universal
It seems if you place the extreme crafting table down
place nothing inside of it and shift click the output slot it gives you Infinity Catalyst for nothing link to video.
tested in my custom Modpack.

Video: https://youtu.be/udqhwaNa3Eo

[Bug/漏洞] Players without Infinity Boots equipped randomly jump higher

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I followed the Docs and read the Changelog, but this problem still exists./我确认我按照文档配置并阅读了Changelog,但这个问题仍然存在。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Java Version / Java版本

17.0.7

Minecraft Version / Minecraft版本

1.20.4

Avaritia-Reforge Version / Avaritia-Reforge版本

1.3.5.3

Description / 描述

Players without Infinity Boots equipped jump higher every other game tick.

This is because every game tick, committee.nova.mods.avaritia.init.handler.AbilityHandler adds every player without Infinity Boots which is not in the entitiesWithBoots to that HashSet and removes every player without Infinity Boots who is in that HashSet. Therefore this effect happens every other tick.

The jumpBoost event is processed for all players and checks if they are present in that HashSet. Players without Infinity Boots equipped are present in that HashSet every other tick, therefore every player will jump higher every other tick without Infinity Boots.

Players with Infinity Boots equipped do not experience such a bug. No other armor effect seems to trigger without the armor equipped, only the Infinity Boots jump boost every other tick.

To Reproduce / 重现

Do not equip Infinity Boots, and jump on random ticks. Holding jump takes an even number of ticks so you can't hold jump, it has to be random.

Log / 日志

Config / 配置

default (fresh instance made exclusively to test)

[Question / 询问]

Checks / 检查

  • I confirm that I have searched for existing issues / pull requests before reporting to avoid duplicate reporting./我确认在报告之前我已经搜索了现有的问题或者拉取请求,以避免重复报告。
  • I confirm that I noted that if I don't follow the instructions, the issue may be closed directly./我确认我已经检查,如果我不按照说明进行操作,该问题可能会被直接关闭。

Description / 描述

how do i add a singularity, the documentation is really unclear and kinda missing, thanks in advance, i would appreciate documentation on the json schemas for extreme crafting and singularities, i want to know how to do it in json if possible

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.