Jump to content

Recommended Posts

Posted

Hello. I am trying to read the value (durability) from a config file for an Shield Item. I cant get the code to work and i need some help. So I just need help on how to call the value from the config file. The code from the Config file works absolutely fine. Here is the code of my Shield Item getting registered and getting the Properties.

 

public static final DeferredItem<Item> LEATHER_SHIELD = ITEMS.register("leather_shield", 
  () -> new ShieldItem(new Item.Properties().durability(MoreVanillaShieldsConfig.LEATHER_SHIELD_DURABILITY.get())){ 
  
  
      @Override public int getMaxDamage(ItemStack stack) {
        return MoreVanillaShieldsConfig.LEATHER_SHIELD_DURABILITY.get();
      } 
    
 });

 

Posted (edited)

You cannot access config during registration.

https://forge.gemwire.uk/wiki/Stages_of_Modloading

https://forge.gemwire.uk/wiki/Configs

  Quote

NOTE: Forge will only update the values of your config fields in code after the registry events are finished. Therefore, you should only attempt to grab the config values after the registry events are completed. (FMLCommonSetupEvent and later are safe)

Expand  

 

As I said on your hijack of the other thread, this question has been asked and answered many times before.

You can use search instead of posting repeat questions.

 

In your case, that config needs to be a server config so that client and server agree on what the durability is. Otherwise you will get inconsistencies.

 

Basicially the value won't be known until the player joins the server, either loading a world in single player world or joining a remote server.

That also means different single player worlds can set different values (like how game rules work).

 

In your registration of the item you should set it some default value so the game knows the item has durablity.

It does not matter what value you set as long as it not zero which would mean the item has no durability.

That value won't actually be used because you have overridden the method to get the value from somewhere else.

Edited by warjort

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Posted

Also if you want help with your code, you need to post reproducable examples of the problem on github.

Not small snippets of code in the forum that contain that have no context.

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Posted
  On 1/6/2024 at 9:00 PM, warjort said:

You cannot access config during registration.

https://forge.gemwire.uk/wiki/Stages_of_Modloading

https://forge.gemwire.uk/wiki/Configs

 

As I said on your hijack of the other thread, this question has been asked and answered many times before.

You can use search instead of posting repeat questions.

 

In your case, that config needs to be a server config so that client and server agree on what the durability is. Otherwise you will get inconsistencies.

 

Basicially the value won't be known until the player joins the server, either loading a world in single player world or joining a remote server.

That also means different single player worlds can set different values (like how game rules work).

 

In your registration of the item you should set it some default value so the game knows the item has durablity.

It does not matter what value you set as long as it not zero which would mean the item has no durability.

That value won't actually be used because you have overridden the method to get the value from somewhere else.

Expand  

Thanks for your information. Gonna try that out

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Whenever i play on forge 1.20.1 Tlauncher, i get 2 black borders on the right and left, and this is caused by forge because when i play minecraft normally through t launcher i dont have the borders anymore and ive tried everything to get rid of them, changing resolution on minecraft,pc and t launcher, i tried re installing forge and still didnt work???(cannot show image because i dont know how to do url pic)
    • Figured it out, It was the mod Wetland Whimsy. Still dont understand why but I removed it and now its fine
    • Forge 1.21.5 (55.0.3)
    • How to save values in the world folder?
    • EDIT: put this in the wrong forum, Im SO sorry So I recently made my own modpack to mess around and it plays normally, besides the fact that I cannot break any blocks with a pickaxe. I don't know what mod is affecting this seeing as I don't have a vein miner mod (I did and I deleted it to see if it would fix the issue, it didn't) and I don't have any mods that change the start of the game (That I know of) Mods Included are: Another Furniture Appleskin Architectury API Beginner Survival House Blueprint Carry On Cherry Hut Cloth Config API Clumps Collective Comforts Controlling Critters n' Crawlers Curios API Embeddium Essential Geckolib Geode+ Immersive Weatherting Iris/Oculus & Geckolib Compat Jade JEI JER Macaw's bridges Macaw's Doors Macaw;s Fences and walls Macaw's lights and lamps Macaw's paintings Macaw's Paths and pavings Macaw's roofs Macaw's stairs Macaw's trapdoors Macaw's windows Moonlight lib Mouse tweaks Natures Spirit NewWorld Polymorph Pretty Rain Sawmill Searchables Snowy Tents Sodium/Embeddium Dynamic Lights Sodium/Embeddium Extras Sodium/embeddium options API Sophisticated Backpacks Sophisticated Core Supplementaries Swamp Boat TerraBlender Tree Harvester Wetland Whimsy I don't know whats causing this as there are no mentions that I can find of any of these mods causing this issue, so im confused on why its doing this. Please help lol
  • Topics

×
×
  • Create New...

Important Information

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