Open VideoGameSmash12 opened 12 months ago
This issue is caused by 1.20.3 changing how instances of HotbarStorage are created. Instead of using java.io.File, they changed it so that it uses java.nio.file.Path instead.
Unfortunately, Hotbars+ relies heavily on the use of replacing instances of java.io.File
with its own, and attempting to support 1.20.3 by replacing it with Path would end up breaking backwards compatibility with versions 1.14 to 1.20.2 in the current way the project is set up. This leaves me at a crossroad where I need to either jankily unbork the way things are setup or completely restructure the project to reduce the need for boilerplate code.
I'll look into trying to get the former to work just for the sake of time.
sigh