TerraformersMC / Terraform

Base library for the Terraformers' mods
GNU Lesser General Public License v3.0
37 stars 16 forks source link

TerraformBoatTypeRegistry using private method #93

Closed Pilot-Boi closed 2 months ago

Pilot-Boi commented 2 months ago

The Identifier method used in TerraformBoatTypeRegistry to create an Identifier was recently made private by Mojang, so the compiler is now throwing an error. Request that the method call when creating REGISTRY_ID be changed from "new Identifier("terraform", "boat")" to "Identifier.of("terraform", "boat") This won't throw an error on compiling.

haykam821 commented 2 months ago

This issue should already be fixed in version 11.0.0 alpha 1; are you using that version?

Pilot-Boi commented 2 months ago

I'm using 10.0.0 because I couldn't figure out how to write the import command in the build file. I'm really new to modding