From 4c60b452efda24794c0faa5f300fdd830edcd383 Mon Sep 17 00:00:00 2001 From: nextdaydelivery <79922345+nxtdaydelivery@users.noreply.github.com> Date: Sat, 3 Sep 2022 12:50:40 +0100 Subject: deprecator + Stack trace utilities (#121) * deprecator * check for more system packages because iterators n stuff * add LogScanner, new loader platform features, spam protection * oop~ * move to Preferences * diamond review * add back the exception * try-catch things and associate OneConfig mods with an ActiveMod * ok maybe not + api my beloved --- versions/1.16.2-fabric/api/1.16.2-fabric.api | 3 +++ 1 file changed, 3 insertions(+) (limited to 'versions/1.16.2-fabric') diff --git a/versions/1.16.2-fabric/api/1.16.2-fabric.api b/versions/1.16.2-fabric/api/1.16.2-fabric.api index 295d7c7..24c9dab 100644 --- a/versions/1.16.2-fabric/api/1.16.2-fabric.api +++ b/versions/1.16.2-fabric/api/1.16.2-fabric.api @@ -49,8 +49,10 @@ public class cc/polyfrost/oneconfig/platform/impl/I18nPlatformImpl : cc/polyfros public class cc/polyfrost/oneconfig/platform/impl/LoaderPlatformImpl : cc/polyfrost/oneconfig/platform/LoaderPlatform { public fun ()V public fun getActiveModContainer ()Lcc/polyfrost/oneconfig/platform/LoaderPlatform$ActiveMod; + public fun getLoadedMods ()Ljava/util/List; public fun hasActiveModContainer ()Z public fun isModLoaded (Ljava/lang/String;)Z + public fun toActiveMod (Ljava/lang/Object;)Lcc/polyfrost/oneconfig/platform/LoaderPlatform$ActiveMod; } public class cc/polyfrost/oneconfig/platform/impl/MousePlatformImpl : cc/polyfrost/oneconfig/platform/MousePlatform { @@ -88,6 +90,7 @@ public class cc/polyfrost/oneconfig/platform/impl/PlatformImpl : cc/polyfrost/on public fun getLoader ()Lcc/polyfrost/oneconfig/platform/Platform$Loader; public fun getMinecraftVersion ()I public fun isCallingFromMinecraftThread ()Z + public fun isDevelopmentEnvironment ()Z } public class cc/polyfrost/oneconfig/platform/impl/ServerPlatformImpl : cc/polyfrost/oneconfig/platform/ServerPlatform { -- cgit