diff --git a/NEXT_RELEASE_DRAFT.md b/NEXT_RELEASE_DRAFT.md index e5ea6aa..c128521 100644 --- a/NEXT_RELEASE_DRAFT.md +++ b/NEXT_RELEASE_DRAFT.md @@ -29,4 +29,10 @@ * The stage manager should be relatively low-overhead and allow multiple instances * Allow stages to be inherited from, creating a stack-like structure - \ No newline at end of file +* The initial release of `[PlutoCommandParser]` + + +## Features targeted for 20.2.0.0-alpha.3 +* `[PlutoLib]` Completely redo the ModLoader system + * The current implementation is a result of 5 years of feature creep + * Large scale API changes \ No newline at end of file diff --git a/plutolib/src/main/java/cz/tefek/pluto/modloader/ModLoaderCore.java b/plutolib/src/main/java/cz/tefek/pluto/modloader/ModLoaderCore.java index c1225b4..3d97229 100644 --- a/plutolib/src/main/java/cz/tefek/pluto/modloader/ModLoaderCore.java +++ b/plutolib/src/main/java/cz/tefek/pluto/modloader/ModLoaderCore.java @@ -53,12 +53,9 @@ public class ModLoaderCore if (registeredMod.isPresent()) { - if (modDataRoot != null) - { - var mod = registeredMod.get(); + var mod = registeredMod.get(); - mod.setRootDataFolder(modDataRoot); - } + mod.setRootDataFolder(modDataRoot); return; }