lightning2401 / northstar

Inspired by Micdoodle's Galacticraft, Northstar seeks to return players to the stars with the power of the Create mod.
31 stars 11 forks source link

Fixed an issue preventing the Mod from starting on a Dedicated Server #40

Open OutCraft-Mods opened 3 months ago

OutCraft-Mods commented 3 months ago

Trying to run this mod on a Dedicated Server (not Open-To-Lan, but "real" server jar) results in the crash

java.lang.NoClassDefFoundError: com/ibm/icu/impl/Pair

The Forge Dedicated Server version of Minecraft does not contain the icu4j library used on a client, but part of the mod's serverside code depends on icu4j for the Pair class.

This PR replaces all occurrences of com.ibm.icu.impl.Pair with the Pair class of Create (com.simibubi.create.foundation.utility.Pair) which exists on a Dedicated Server and is nearly identical to the icu4j one.