fix(Modloader installer): Correctly setup ProcessBuilder for Modloader Installer
The problem was a wrongly build ProcessBuilder not passing the users configuration to said ProcessBuilder correctly. Vital information about the Minecraft and Fabric Loader versions went poof due to me not setting up the ProcessBuilder in the way it was supposed to. This has been fixed and the Fabric server is now installing for the correct loader and Minecraft versions.
Before: I passed my arguments as String and formatted Strings.
Now: I'm passing a String List which contains all the vital information needed.